function apri(url, w, h, name) {
var windowprops = "width=" + w + ",height=" + h;
if (name == null) name='remote';
popup = window.open(url,name,windowprops+',scrollbars=yes,resizable=no,location=no,menubar=no,status=yes');
}

