<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'



var color		= "FFFFFF"		// HEADER BACKGROUND COLOR




// COPYRIGHT 2007 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE

// START GRAPHIC HEADER

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%" BGCOLOR="#'+color+'"><tr><td align="left">');
document.write('<a href="index.html"><img src="picts/logo.jpg" border="0"></a><br>');
document.write('</td></tr></table>');





// CODE FOR THE DATE DISPLAY




function date1( ){
m= new Array(12);
m[0]="January";m[1]="February";m[2]="March";m[3]="April";m[4]="May";m[5]="June";
m[6]="July";m[7]="August";m[8]="September";m[9]="October";m[10]="November";m[11]="December";
now = new Date( );
month=now.getMonth( );
day=now.getDate( );
switch (day){
case 1:
sup="st";
break;
case 21:
sup="st";
break;
case 31:
sup="st";
break;
case 2:
sup="nd";
break;
case 22:
sup="nd";
break;
case 3:
sup="rd";
break;
case 23:
sup="rd";
break;
default:
sup="th";
}
year=now.getFullYear( );
document.write("<FONT SIZE=2 COLOR='darkblue'><DIV ALIGN='LEFT'>"+m[month]+" " +day+"<SUP>"+sup+"</SUP>"+" "+year+"</DIV></FONT>");
}




//  End -->