<!--#include virtual="/cinc/ipconstants.asp"-->
<!--	

	function detectSP2() {	
	// Thank you, Microsoft for your lousy Service Pack 2, which ignores 'status=no' property
	// So now I have to detect if SP2 is installed, and if it is, increase the height
	// of the window to compensate for the frickin' status bar, which appears
	// whether I like it or not (and I do NOT like it, for the record, not that MS cares).
	
	var g_fIsSP2 = false;
	
  		g_fIsSP2 = (window.navigator.userAgent.indexOf("SV1") != -1);
		//alert(g_fIsSP2);
  	if (g_fIsSP2){
      //This browser is Internet Explorer in SP2. 
	  h = parseInt(h);	  
	  h = h + 22;  // the approximate height of the status bar.
	}
  else{
      //This browser is not Internet Explorer in SP2.
	  h = parseInt(h);	  
	  h = h + 0;
	  }
	}
	
function openWinUWHLT(url,width,height,left,top) {
	w= width;
	h= height;		
	l = left;
	t = top;	
	detectSP2();
	
	myNewWin=window.open(url,"newWindow","resizable=yes,menubar=no,location=no,toolbar=no,scrollbars=no,status=no,directories=no");if(window.focus){myNewWin.focus();};	
	
	myNewWin.resizeTo(w,h);	
	myNewWin.moveTo(l,t);	
	
	myIP = "";
	theUrl = "";	
	w= "";
	h= "";
	l = "";
	t = "";
	}
	
	
function openWinScrollUWHLT(url,width,height,left,top) {
	w= width;
	h= height;		
	l = left;
	t = top;	
	
	myNewWin=window.open(url,"newWindow","resizable=no,menubar=no,location=no,toolbar=no,scrollbars=yes,status=no,directories=no");if(window.focus){myNewWin.focus();};	
	
	myNewWin.resizeTo(w,h);	
	myNewWin.moveTo(l,t);	
	
	myIP = "";
	theUrl = "";	
	w= "";
	h= "";
	l = "";
	t = "";
	}
	//-->