//Version 1.6 - 10/11/2000

/** change width and height vars to change size of new window **/
width=740;
height=520;

bVer = parseFloat(navigator.appVersion);
bName = navigator.appName;


/* opens a new popup window */
var popObj;
function openPop(strFile,name,nWidth,nHeight,bStatus,bscroll,resize){
	//only allow one popup window
	if (popObj && popObj.location)popObj.close();
	var at="";
	if (screen.width<=800) at=",left=0,top=16";
	popObj=window.open(strFile, name,"toolbar=0,location=0,directories=0,status="+bStatus+",menubar=0,scrollbars="+bscroll+",resizable="+resize+",width="+nWidth+",height="+nHeight+at);
}

/*opens new window for service
*/
function openNewService(location){
        openPop(location,"Your_Interactive_Law",width,height,1,1,1);
}
