/* Popup */
function popupWin(URL) {
	newWindow = window.open(URL,'newWindow', 'toolbar=0, scrollbars=0, location=0, statusbar=0, menubar=0, resizable=0, width=780, height=600');
	if (window.focus) {
		newWindow.focus();
	}
	return false;
}
function popupWin2(URL) {
	newWindow = window.open(URL,'newWindow', 'toolbar=0, scrollbars=0, location=0, statusbar=0, menubar=0, resizable=0, width=500, height=580');
	if (window.focus) {
		newWindow.focus();
	}
	return false;
}
