<!--
var newWindow;
function openNewWin(winURL) {
	if (!newWindow || newWindow.closed) {
		newWindow = window.open(winURL, 'newWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=620,height=440');
		if (!newWindow.opener)
			newWindow.opener = window;
	} else {
		// window's already open; bring to front
		newWindow.location = winURL;
		newWindow.focus();
	}
	return false;
}
//-->

