function pupup(theURL) { 
    pupup_large(theURL); 
}


function pupup_large(theURL) { 
    if (theURL != "")
    {
        var win =  window.open(theURL, "PupupIsSmaller",
                       "scrollbars=no,width=400,height=460,top=0,left=5,resizable=yes,toolbar=yes,menu=yes");
        win.focus();
    }
}


