﻿<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'


var color		= "000000"	// HEADER BACKGROUND COLOR




document.write('<center><TABLE cellpadding="0" cellspacing="0" border="0" width="750" bgcolor="#'+color+'"><tr><td align="left">');
document.write('<a href="index.html"><img src="picts/logo.jpg" border="0"></a><br>');
document.write('</center></td></tr></table>');



// START DATE SCRIPT

var showd	= "yes"  	// SHOW THE DATE
var dateLR	= "right"  	// DATE LEFT OR RIGHT
var dateX	= "260"  	// DATE X LOCATION
var dateY	= "14"  	// DATE Y LOCATION
   if (showd == "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>');
}





//  End -->