

	var screenRes = checkResolution();	
	
	alert("in header fix");
	
	if (screenRes == "High"){
		//alert("default1280x1024.htm " + screenRes);
		//	this.open("default1280x1024.htm");
		//document.location.href = "index_1280x1024.htm";
		document.write ("<h1 id='heading'><img src='images/purs_logo_1280x1024.gif' /></h1>");
	}
	else if (screenRes == "Med"){
		//alert("1024x768.htm " + screenRes);
		//document.location.href = "default1024x768.htm";		
		document.write ("<h1 id='heading'><img src='images/purs_logo_1024x768.gif' /></h1>");
	}
	else if (screenRes == "Low"){
		//alert("default800X600.htm " + screenRes);	
		//document.location.href = "default800x600.htm";
		document.write ("<h1 id='heading'><img src='images/purs_logo_800x600.gif' /></h1>");
	}
	else{
		//alert("this site is best viewed with 1280x1024, 1024x768, or 800x600 resultion.");
		//document.location.href = "default1024x768.htm";
		//document.write ("<h1 id='heading'>Paranormal United Research Society</h1>");
		//document.write ("<div style='color: #cf9118; text-align: center; font-size:40px;'>Paranormal United Research Society</div>");		
		document.write ("<div id='heading' style='color: #cf9118; text-align: center; font-size:40px;'>Paranormal United Research Society</div>");
		//document.write ("<div>This site is best viewed with 1280x1024, 1024x768, or 800x600 screen size.</div>");		
	}

