
function popup_open(path, w, h, wname, scroll) {
    p = 'width=' + w + ', height=' + h + ', resizable=yes, toolbar=no, location=no, directories=no, status=yes, scrollbars=' + scroll + ', menubar=no';
    varWindow = window.open(path,wname,p);
    window.varWindow.focus();
}
