function goNewWin( POP_URL,WindowNumber,iW,iH ) {
// Check is  Height & Weight are set
if (iW && iH ){
var iW_80 = iW;
var iH_80 = iH;
}
else{
// Do this if they both arent set
if (window.outerHeight) {
  // Netscape code
  iH = window.outerHeight; 
  iW = window.outerWidth; 
}
else {
  // Internet Explorer
  iW = document.body.clientWidth; 
  iH = document.body.clientHeight;
}
iH_80=(iH/100)*80;
iW_80=(iW/100)*80;
if(iW_80 < 800)
	iW_80=820;
}
function loadPop(url, name, type ,height, width) {
	w=window.open(url, name, "width=" + iW_80 + ", height=" + iH_80 + "toolbar=0,location=no,directories=0,status=0,menubar=0,scrollbars=1,resizable=0");
	if (type == "UD" && null != w) {
		w.blur();
		window.focus();
	}
}

//***Get what is below onto one line***
loadPop(POP_URL,WindowNumber,"UD");
}
