// JavaScript Document
function checkCookie(){
		
				if(document.cookie){
				    	glowWrit();
				
				} else {
					glowWrit();
				}
			}
function glowWrit(){

			  document.write("<div style='position: absolute; z-index: -7000; height:141px; width=775; visibility: visible; padding-left:230px;' id='glowDiv' name='glowDiv'>"); 
			  document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' id='myFlashMovie' width='775' height='135'>");
              document.write("<param name=movie value='/Portals/70/Skins/STTL_TheCarDealer/scripts/glow.swf'>"); 
              document.write("<param name=quality value=high>");
			  document.write("<param name=wmode value=transparent>"); 
              document.write("<param name=play value=true>"); 
              document.write("<param name=swfversion value='8.0.35.0' />");
              document.write("<embed play=true src='/Portals/70/Skins/STTL_TheCarDealer/scripts/glow.swf' wmode='transparent'  quality='high' width='775' height='135' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'> </embed >");
            document.write("</object >");
			document.write("</div >");
}
function hideDiv(){
		var control = document.getElementById("glowDiv");
		control.style.visibility = "hidden";
}
checkCookie();
