var showdate		= "no"		// SHOW THE DATE ON THE PAGE
var dateLR		= "right"		// DATE LEFT OR RIGHT
var dateX		= "80"			// DATE X LOCATION
var dateY		= "68"			// DATE Y LOCATION


document.write('<DIV id="menulocation" class="printhide">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="154"><tr><td>');
document.write('<img src="picts/menutop2.gif" width="154" height="81"></a><br>');
document.write('<img src="picts/menu-bottom.gif" width="154" height="39"></a><br>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="about.htm" class="menu">Credentials</a>');


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="service.htm" class="menu">Projects</a>');


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="contact.htm" class="menu">Contact</a>');


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="index.html" class="menu">Home</a>');

document.write('</td></tr><tr><td>');
document.write('<img src="picts/menu-bottom.gif" width="154" height="65"></a><br>');
document.write('</td></tr></table></DIV>');

if (showdate == "yes") {

document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
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("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getDate() + ", ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}

