
// stylesheet sniffer script
navigator.userAgent.indexOf('Mac') != -1 ? document.write('<link rel="stylesheet" type="text/css"  href="../_mstyles.css">') : document.write('<link rel="stylesheet" type="text/css"  href="../_wstyles.css">');


//application popup window script
	function openWin(URL) {
	 aWindow = window.open(URL,"application","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=600,height=400,screenX=100,screenY=104,top=90,left=100");
	  }  


// open calculator windows
function showCalc(calc){
		var pWidth = ( ((parseInt(screen.width) / 2)) - 275 )
		var pHeight = (((parseInt(screen.height) / 2)) -240)
        window.open(calc,'hello',"width=550,height=480,left=" + pWidth + ",top=" + pHeight + ",resizable=1,scrollbars=1");
}

//smaller pop-up win function
function showWin(page){
	var pWidth = ((parseInt(screen.width) - 450) / 2)
	var pHeight = ((parseInt(screen.height) - 300) / 2)
        window.open(page,'hello', "width=450,height=300,left=" + pWidth + ",top=" + pHeight + ",resizable=1,scrollbars=1");
}
