<!-- Begin

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



var color		= "FFFFFF"	// HEADER BACKGROUND COLOR
var flashheight		= "50"		// HEIGHT OF THE FLASH (IN PIXELS)
var flashwidth		= "750"		// WIDTH OF THE FLASH (IN PIXELS)

var showdate		= "yes"		// SHOW THE DATE ON THE PAGE




// FLASH DETECTION OPTIONS

var LogoText	= " Suson Rogan Hearing - Your Digital Hearing Experts"		// TEXT FOR NON-FLASH BROWSERS
var showflash	= "yes"		  	// SHOW FLASH LOGO & DETETION TEST MODE | yes | no |
var logotype	= "graphic"		// DETECTION TO SHOW - | text | graphic |
var logoimg	= "picts/logo.jpg"	// GRAPHIC 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


// FLASH LOGO WITH DETECTION VER 3.0c

// SHOW THIS IF FLASH SOFTWARE IS NOT DETECTED

if (logotype == "graphic") {
var alternateContent = '<img src="'+logoimg+'" border="0"><br>';
}
if (logotype == "text") {
var alternateContent = '<div OnSelectStart=\'return false;\'><nobr><br><span class="NoFlashTitle">&nbsp;'+LogoText+'</span></nobr><br><br></div>';
}

document.write('<table cellpadding="0" cellspacing="0" border="0" width="100%" bgcolor="#'+color+'"><tr><td align="left">');

   if (showflash == "yes") {

// Version check based upon the values entered in "FLASH Globals" in javascripts.js
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

// Check to see if the version meets the requirements for playback
if (hasReqestedVersion) {
	// if we've detected an acceptable version
	// embed the Flash Content SWF when all tests are passed



	AC_FL_RunContent(
				"src", "logo",
				"width", flashwidth,
				"height", flashheight,
				"align", "middle",
				"id", "logo",
				"quality", "high",
				"wmode", "transparent",
				"bgcolor", "#"+color,
				"name", "logo",
				"allowScriptAccess","sameDomain",
				"type", "application/x-shockwave-flash",
				'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
				"pluginspage", "http://www.adobe.com/go/getflashplayer"
	);
} else {  // flash is too old or we can't detect the plugin
document.write(alternateContent);  // insert non-flash content
}
}
else {
document.write(alternateContent);  // insert non-flash content
}




// START DATE SCRIPT
   if (showdate == "yes") {
document.write('<div class="date-location 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('  -  Phone: (630) 969-1677  -  E-mail: <a href="mailto:hearoff@comcast.net?Subject=Web Site Email">hearoff@comcast.net</a>');
document.write('</nobr><br></span>');
document.write('</div>');
}








//  End -->
