// POP UP WINDOW FOR CONTACTING PERSON VI EMAIL

var window_default_size = "width=425,height=325";
var window_top_left = ",left=50,top=50";

//  USE: popup('url','yes or no','name for window',etc.)

//  Null parameters must be entered using '','', etc. if
//  you want to enter a parameter that lies beyond a null

//  EXAMPLE popup('web_page.htm','','','','myWin')
//  This passes the web_page as url, null for wsize,wpos,wscroll, myWin as wname

function popContact(id, wsize, wpos, wscroll, wname){
    
    var link = 'biocontact.php?id=' + id;
    if(!wname){
        wname= "contact";
    }    
    if(!wsize){
        wsize = window_default_size;
    }    
    if(!wpos){
        wpos = window_top_left;
    }
    if(!wscroll){
        wscroll = ",scrollbars=0";
//        wscroll = ",scrollbars=1";
    } else {
        wscroll = ",scrollbars=0";
    }
    wchrome = wsize + wpos + wscroll;
    //alert(wchrome);
    var myWinHandle = window.open(link, wname, wchrome);
    
} // E N D   p o pC o n t a c t ( w p a g e ,   w s c r o l l . . .
