function mypopup(location,name,w,h){
 var scrw=(screen.width/2)-(w/2);
 var scrh=(screen.height/2)-(h/2);
 window.open(location,name,'scrollbars, resizable=1,left='+scrw+',top='+scrh+',width='+w+',height='+h);
} 
