function popup(page,w,h)
{ 
var width=screen.width;
var height=screen.height;
var arg;
l=(width-w)/2;
t=(height-h)/2;
if (width>w && height>h) arg="top="+t+",left="+l+",";
win=window.open (page,"", arg+"height="+h+", width="+w+",toolbar=no, menubar=no, scrollbars=yes , resizable=no, location=no, status=no");
}