
 var win;
  var H = 0;
  var W = 0;
  var loc = "";


		function measure(){
				if (document.layers) {
			   W = window.screen.width - 6;
 		   H = window.screen.height - 97;

}else{

 			  W = window.screen.width - 6;
 		   H = window.screen.height - 124;
				}
}
 function winOpen(){
		measure();
  loc = "";
  if(top.location.search.length > 0)
    loc = "&LOC="+top.location.search.substring(1,top.location.search.length);
  win = window.open("index2.htm?W="+W+loc,"","toolbar=no,width="+W+",height="+H+",directories=no,status=yes,scrollbars=no,resize=no,menubar=yes,location=no,copyhistory=no");
  win.moveTo(0,0);
  win.focus();
}

