function checkbrowser(){

	var userAgent=navigator.appName;
	var agentInfo=userAgent.substring(0, 8);


	if (agentInfo == "Netscape"){
		//window.alert("Netscape");
			document.write ('<body bgcolor="#E7D0A0" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">')
		}

	else  {
		//window.alert("Internet Explorer");
			document.write ('<body style="background-attachment:fixed" bgcolor="#E7D0A0" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" background="images/bg_main.jpg">')
		}

}
