<!-- Begin OPTIONS CODE

// CHANGE ANY OF THESE VARIABLES

// USE lowercase FOR OPTIONS


var flashwidth		= "750"		// WIDTH OF THE FLASH 
var flashheight		= "75"		// HEIGHT OF THE FLASH 
var color		= "0B2D7E"	// HEADER BACKGROUND COLOR (also edit in css)
var flashmode		= "transparent"	// FLASH WMODE | window | opaque | transparent |
var swffile		= "logo"	// FLASH SWF FILE NAME

var showdate		= "yes"		// SHOW THE DATE ON THE PAGE
var stripes	 	= "yes"		// SHOW STRIPE UNDER THE FLASH

var noflashimg		= "picts/logo.jpg"	// NO FLASH DISPLAY IMAGE
var logolink		= "index.html"		// PAGE TO LINK LOGO




// COPYRIGHT 2011 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE



document.write('<table cellpadding="0" cellspacing="0" border="0" width="100%" bgcolor="#'+color+'"><tr><td align="left" class="headercolor">');

// MOBILE IPOD IPHONE IPAD DETECTION
if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) 
{ 
document.write('<a href="'+logolink+'"><img src="'+noflashimg+'" width="'+flashwidth+'" height="'+flashheight+'" border="0"></a><br>');
}
else { 
if 
((navigator.userAgent.indexOf('MSIE') != -1) || 
(navigator.userAgent.indexOf('Firefox') != -1) || 
(navigator.userAgent.indexOf('Chrome') != -1) || 
(navigator.userAgent.indexOf('Safari') != -1) || 
(navigator.userAgent.indexOf('Netscape') != -1) || 
(navigator.userAgent.indexOf('Opera') != -1)) 
{ 
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="'+swffile+'">');
document.write('<param name="movie" value="'+swffile+'.swf">');
document.write('<param name="wmode" value="'+flashmode+'">');
document.write('<param name="quality" value="high">');
document.write('<param name="bgcolor" value="#'+color+'">');
document.write('<embed src="'+swffile+'.swf" quality="high" wmode="'+flashmode+'" bgcolor="#'+color+'" width="'+flashwidth+'" height="'+flashheight+'" name="'+swffile+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object><br>');
 }
else {
document.write('<a href="'+logolink+'"><img src="'+noflashimg+'" width="'+flashwidth+'" height="'+flashheight+'" border="0"></a><br>');
}
}
   if (stripes == "yes") {
document.write('</td></tr><tr class="printhide"><td class="pagebars">');
document.write('<img src="picts/spacer.gif" width="10" height="1"><br>');
}

document.write('</td></tr></table>');



// START DATE SCRIPT
   if (showdate == "yes") {

document.write('<div id="date-location" class="printhide">');
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 -->
