function fireup(theURL) { 
    fireup_large(theURL); 
}


function fireup_large(theURL) { 
    if (theURL != "")
    {
        var win =  window.open(theURL, "fireUpNewWindow",
                       "scrollbars=yes,width=385,height=450,top=0,left=5,resizable=yes,toolbar=yes,menu=yes");
        win.focus();
    }
}


