// Creates a popup window at the given URL and of the given size
function windowPop(p_url, p_width, p_height) 
    {
	popupzz = window.open(p_url,"popupzz","location=no,toolbar=yes,scrollbars=yes,resizable=yes,width=" + p_width + ",height=" + p_height);
	if (popupzz != null) { popupzz.focus(); } else { alert("You need to allow pop-ups to access this portion of the site.<br/>Consult your browser or toolbar documentation to enable pop-ups."); }
    }
    
// Creates a second popup window at the given URL and of the given size
function windowPop2(p_url, p_width, p_height) 
    {
	popupzz = window.open(p_url,"popupzz2","location=no,toolbar=yes,scrollbars=yes,resizable=yes,width=" + p_width + ",height=" + p_height);
	if (popupzz != null) { popupzz.focus(); } else { alert("You need to allow pop-ups to access this portion of the site.<br/>Consult your browser or toolbar documentation to enable pop-ups."); }
    }