/*
	Popup function to open new windows
	11/15/2004
*/
function popWin(sURL, iWidth, iHeight) {

	subWinXpos = (screen.width / 2) - (iWidth / 2);
	subWinYpos = (screen.height / 2) - (iHeight / 2);

	subWinAttr	= 'toolbar=0,'
				+ 'scrollbars=1,'
				+ 'location=0,'
				+ 'statusbars=0,'
				+ 'menubar=no,'
				+ 'resizable=0,'
				+ 'width=' + iWidth + ','
				+ 'height=' + iHeight + ','
				+ 'left=' + subWinXpos + ','
				+ 'top=' + subWinYpos;

	WINDOW = window.open(sURL, 'map', subWinAttr);
	WINDOW.focus();
}