/**********************************************************
General purpose/use JavaScript library file

**********************************************************/

function popupWindow(popupURL,height,width,windowName) {
	if (height == null) height=400;
	if (width == null) width=750;
	if (windowName == null) windowName='PopupWin';
	popupWin = window.open(popupURL, windowName,'height='+height+',width='+width+',scrollbars=yes,resizable=yes');
	popupWin.focus();
}

function popupWindowHW (popupURL,height,width) {
	//popupWin = window.open (popupURL,'PopupWin','height='+height+',width='+width+',scrollbars=yes,resizable=yes');
	//popupWin.focus ();
	popupWindow (popupURL,height,width);
}

