
<!-- Begin FLASH sub logo

<!-- NOTE: If you use a ' add a slash before it like this \' -->

document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="600" HEIGHT="75" id="sublogo" ALIGN="">');
document.write('<PARAM NAME=movie VALUE="sublogo.swf">');
document.write('<PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#1F3037>');
document.write('<EMBED src="sublogo.swf" quality=high bgcolor=#1F3037  WIDTH="600" HEIGHT="75" NAME="sublogo" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">');
document.write('</EMBED>');
document.write('</OBJECT>');


//  End -->


// START DATE SCRIPT

var showd	= "yes"  	// SHOW THE DATE
var dateLR	= "left"  	// DATE LEFT OR RIGHT
var dateX	= "30"  	// DATE X LOCATION
var dateY	= "105"  	// 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("Sun","Mon","Tue","Wed","Thu","Fri","Sat")
var monthname=new Array("01","02","03","04","05","06","07","08","09","10","11","12")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + "   ")
document.write(monthname[d.getMonth()] + ".")
document.write(d.getDate())
document.write(".0" + (d.getFullYear() - 2000))
document.write("</nobr><br></span>")
document.write('</div>');
}
//  END -->


