/*
function popup(mylink, windowname,ww,hh)
{
var winleft = (screen.width - ww) / 2;
var winUp = (screen.height - hh) / 2;

    window.open(mylink, windowname, 'top='+((screen.height - hh) / 2)+',left='+((screen.width - ww) / 2)+'+,toolbar=0 status=0,resizable=0,Width='+ww+',height='+hh+',scrollbars=0');
    
 return false;

}
*/
function popup(theURL,winName,features) { //v2.0
 window.open(theURL,winName,features);
}