$my_iWebCal->includes(); // Includes stylesheets and scripts needed by the calendar viewer.
?>
echo $my_iWebCal->title(); // Gives the page a title based on the filename of the calendar.
?>
$my_iWebCal->display(); // Displays the calendar and controls for it (i.e. most of the page).
// If you need to do debugging, you can use Calendar's dprint() method to print out raw Calendar
// object data in a reasonably readable form. Just comment out the call to printCal() above and
// uncomment the line below. For actual deployment, make sure the dprint() call is commented out
// again.
//$my_iWebCal->cal->dprint();
?>