function popup(theURL) { 
    popup_large(theURL); 
}


function popup_large(theURL) { 
    if (theURL != "")
    {
        var win =  window.open(theURL, "PopupLarge",
                       "width=425,height=500,scrollbars=yes,resizable=yes,toolbar=no,menu=no");
        win.focus();
    }
}


