﻿
function popupPage(page, w, h) 
{
    windowprops = "height=" + h + ",width=" + w + ",location=no,"
    + "scrollbars=no,menubars=no,toolbars=no,resizable=no";

    window.open(page, "Popup", windowprops);
}
