
function popupPage(url,name,l, t, w, h) {
var windowprops = name + ",location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes" + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;

window.open(url, "", windowprops);
}

