function NewPopupWindow(URL,WIDTH,HEIGHT) {
	oNewWin = window.open(URL,"_blank","width="+String(WIDTH)+
			",height="+String(HEIGHT)+",dependent=no,scrollbars=yes,resizable=yes");
	oNewWin.focus();
}

