// legacy Popup window code
function newPopupNJ(url) {
	popupWindow = window.open(
		url,'popUpWindow','height=270,width=400,left=580,top=400,resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=yes')
}

// legacy Popup window code

function newPopup2(url) {
	popupWindow = window.open(
		url,'popUpWindow','height=640,width=830,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=yes')
}

// new code
function pop(url,W,H,L,T)
{	
	
	//screenW = screen.availWidth;
	//screenH = screen.availHeight;
	leftPos = (screen.availWidth-W)/2;
	topPos = (screen.availHeight-H)/2;
	//thewindow = window.open(url,'popUpWindow','height=640,width=830,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=yes');
	//thewindow = window.open(url,'popUpWindow','width=' + W + ',height=' + H + ',top=' + L + ',left=' + R + ',resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=yes');
	thewindow = window.open(url,'popUpWindow','width=' + W + ',height=' + H + ',top=' + topPos + ',left=' + leftPos + ',resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=no');
	//thewindow .focus();
}
