// 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);
	popupzz.focus();
    }
    
// 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);
	popupzz.focus();
    }