function openMe(myUrl)
{



window.open(myUrl,"myWindow","width=400,height=460,top=50,left=360,resizable=yes");
}





function openLarge(myUrl)





{





window.open(myUrl,"myWindow","width=500,height=480,top=30,left=400,resizable=yes");





}







function openWebMail(myUrl)



{



window.open(myUrl,"myWindow","width=500,height=500,top=50,left=300,resizable=yes");



}









function backHome()




{




	opener.location.href = "http://www.4000ft.com";




       window.close();	




}











function openLong(myUrl)





{





window.open(myUrl,"myWindow","width=430,height=600,top=50,left=300,resizable=yes");





}

















function dw(string)





   {





   	document.write(string);





   }





   





   var isWin = browserOS('Win');





   var isMac = browserOS('Mac')





   var isLinux = browserOS('Linux')





   var isIE = browserType('Microsoft');





   var isNS = browserType('Netscape');





   var verNum = browserVer();





   





   function browserOS(checkOS)





   {





   	var clnt = navigator.platform;





   	if (clnt.indexOf(checkOS)>-1)





   		return true;





   	else





   		return false;   





   }





   





   function browserType(checkType)





   {





   	var clnt = navigator.appName;





   	if (clnt.indexOf(checkType)>-1)





   		return true;





   	else





   		return false;





   }





   





   function browserVer()





   {





   	var clnt = navigator.appVersion;





   





   	if (isNS)





   		return parseFloat(clnt);





   	if (isIE)





   		return parseFloat(clnt.substring(clnt.indexOf("MSIE")+4));





   }