/*	--- Popup window functions ---	*/

//	Fixed popup window
function popup(URL,width,height) {
	popWin = window.open(URL,"popWin","width="+width+",height="+height+",resizable=0,scrollbars=0,location=0,toolbar=0");
	popWin.focus();
	return false;
}

//	Resizable and scrollable popup window
function popupResize(URL,width,height) {
	popWin = window.open(URL,"popWin","width="+width+",height="+height+",resizable=1,scrollbars=1,location=0,toolbar=0");
	popWin.focus();
	return false;
}

