<!-- Begin// LOGO OPTIONS// USE lowercase FOR ALL OPTIONSvar flashw		= "750"		 // WIDTH OF THE FLASH LOGOvar flashh		= "40"		 // HEIGHT OF THE FLASH LOGOvar flashCol		= "1F251C"	 // LOGO BACKGROUND COLORvar flashmode		= "transparent"	 // FLASH WMODE | window | opaque | transparent |var logoalign		= "center"	 // ALIGN LOGOvar headerheight	= "45"		 // OVERALL HEADER HEIGHTvar botM		= "0"		 // HEADER BOTTOM MARGINvar topM		= "0"		 // HEADER TOP MARGINvar bordertop		= "4D412E"	 // TOP BORDER COLORvar borderbot		= "4D412E"	 // BOTTOM BORDER COLORvar borderthk		= "0"		 // BORDER THICKNESS// FLASH DETECTION OPTIONSvar LogoText		= "Self Images"	    // TEXT FOR NON-FLASH BROWSERSvar textmargin		= "10"		    // LEFT/RIGHT MARGIN FOR TEXT LOGOvar showflash		= "yes"		    // SHOW FLASH LOGO & DETECTION TEST MODE | yes | no |var logotype		= "text"	    // 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// FLASH LOGO WITH DETECTION VER 3.0// YOU DO NOT NEED TO EDIT BELOW THIS LINE// 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;\' style="margin-left:'+textmargin+'px;margin-right:'+textmargin+'px;"><nobr><span class="NoFlashTitle">&nbsp;'+LogoText+'</span></nobr></div>';}document.write('<table cellpadding="0" cellspacing="0" border="0" width="100%" style="background-color: #'+flashCol+'; border-top: #'+bordertop+' '+borderthk+'px solid; border-bottom: #'+borderbot+' '+borderthk+'px solid; height: '+headerheight+'px; margin-top: '+topM+'px; margin-bottom: '+botM+'px;" class="background-header"><tr><td height="'+flashh+'" valign="middle" align="'+logoalign+'">');   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.swf",				"width", flashw,				"height", flashh,				"align", "middle",				"id", "logo",				"quality", "high",				"wmode", flashmode,				"bgcolor", "#"+flashCol,				"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}document.write('</td></tr></table>');// -->
