var months=new Array(12);

months[0]="January";
months[1]="February";
months[2]="March";
months[3]="April";
months[4]="May";
months[5]="June";
months[6]="July";
months[7]="August";
months[8]="September";
months[9]="October";
months[10]="November";
months[11]="December";

var time=new Date();
var lmonth=months[time.getMonth()];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)    // 
year = year + 1900; // 

document.write('<table class="body" width="760">'
+ '<tbody>'
+ '<tr>'
+ '      <TD width=24 height=55>'
+ '        <img border="0" src="graphics/manxcat1.jpg" alt="Manx cat" width="129" height="85"></TD>'
+ '      <TD align="center" vAlign="center" width="486" height="55">'
+ '        <img border="0" src="' + pagegraphicpath + '" alt="' + alttitle + '" width="400">'
+ '      </TD>'
+ '      <TD vAlign=bottom width=130 height=55>'
+ '         <img border="0" src="graphics/3legs4.gif" width="129" height="88" alt="The three legs of Man">'
+ '      </TD>'
+ '    </TR>'
+ '    <TR>'
+ '      <TD colSpan=3 height=10></TD>'
+ '    </TR>'
+ '  </TBODY>'
+ '</TABLE>'
+ ''
+ '<TABLE cellSpacing=0 cellPadding=0 width=760 border=0>'
+ ' <TBODY>'
+ '   <TR>'
+ '     <TD class="section" width="20">'
+ '     <TD class="section" align="left" height="22">'
+       date + " " + lmonth + " " + year
+ '     </TD>'
+ '     <TD class="section" align=left width=93 height=22>'
+ ''
+ '      </TD>'
+ '     <TD class="section" vAlign="center" align="right" height=22>'
+ '        <a href="./" class="section">Home</a> |'
+ '        <a href="holidays.htm" class="section"> Holidays</a> |'
+ '        <a href="social.htm" class="section"> Parties</a> |'
+ '        <a href="news.htm" class="section"> What`s New</a> |'
+ '        <a href="iom.aspx" class="section">IOM</a> |'
+ '        <a href="interests.htm" class="section">Interests</a> |'
+ '        <a href="consultancy.htm" class="section">Web Design</a> |'
+ '        <a href="contact.htm" class="section"> Contact</a> |'
+ '        <a href="sitemap.htm" class="section"> Site Map</a>'
+ '     </TD>'
+ '     <TD class="section" vAlign="right" width="30" height="22">'
+ '     </TD>'
+ '   </TR>'
+ '   <TR>'
+ '     <TD height="10">'
+ '   </TR>'
+ ' </TBODY>'
+ '</TABLE>');