<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'


var flashcolor		= "FFFFFF"		// FLASH BACKGROUND COLOR
var color		= "FFFFFF"		// HEADER BACKGROUND COLOR
var flashheight		= "75"			// HEIGHT OF THE FLASH (IN PIXELS)
var flashwidth		= "93"			// WIDTH OF THE FLASH (IN PIXELS)




// COPYRIGHT 2008 © 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 FLASH HEADER 
                    
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"  ');
document.write('			id="distribute" width="150" height="735" ');
document.write('			codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab"> ');
document.write('			<param name="movie" value="Distibute.swf" /> ');
document.write('			<param name="quality" value="high" /> ');
document.write('			<param name="bgcolor" value="#ffffff" />  ');
document.write('			<param name="allowScriptAccess" value="sameDomain" /> ');
document.write('			<embed src="Distibute.swf" quality="high" bgcolor="#869ca7"');
document.write('				width="150" height="735" name="Distribute" align="middle"');
document.write('				play="true"');
document.write('				loop="false" ');                
document.write('				quality="high" ');
document.write('				allowScriptAccess="sameDomain" ');
document.write('				type="application/x-shockwave-flash" ');
document.write('				pluginspage="http://www.adobe.com/go/getflashplayer"> ');
document.write('			</embed> ');
document.write('	</object>  ');
        

    /* 
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%" BGCOLOR="#'+color+'"><tr><td align="left">');
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="'+flashwidth+'" HEIGHT="'+flashheight+'" id="logo" ALIGN="">');
document.write('<PARAM NAME=movie VALUE="slide.swf">');
document.write('<PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#'+flashcolor+'>');
document.write('<EMBED src="slide.swf" quality=high bgcolor=#'+flashcolor+'  WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" NAME="logo" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT><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 -->
