function showDate()
{
   var d=new Date();
   var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
   var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December");

   document.write(weekday[d.getDay()] + " ");
   document.write(d.getDate() + ", ");
   document.write(monthname[d.getMonth()] + " ");
   document.write(d.getFullYear());
}

function printWindow()
{
   bV=parseInt(navigator.appVersion);
   if (bV>=4) window.print();
}

function dispFooter()
{
   var footer='<iframe id="footer" src="footer.html" width="780px" height="80px" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no" content="80" border="0"></iframe>';
   document.write(footer);
}

function dispMenu()
{
   var menu='<iframe id="menu" src="menu.html" width="438px" height="50px" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no" content="50" border="0"></iframe>';
   document.write(menu);
}