//Functions to open a new window for displaying the Login/NewUser Information

function helpWindow(helpfile){
    var url = "helper.php?file="+helpfile;    
    window.open(url,"helpWin","resizeable=no,width=250,height=300,scrollbars=yes");
}

function popupImage(helpfile){
    var url = helpfile;    
    window.open(url,"helpWin","resizeable=no,width=400,height=500,scrollbars=yes");
}

function popupUrl(file){    
    window.open(file,"helpWin","resizeable=no,width=250,height=300,scrollbars=yes");
}




