﻿
function pop(p, w, h, n) {
    var theHeight = h;
    var theWidth = w;
    var theTop = (screen.height / 2) - (theHeight / 2)
    var theLeft = (screen.width / 2) - (theWidth / 2)
    var features = 'height=' + theHeight + ',width=' + theWidth + ',top=' + theTop + ',left=' + theLeft;
    var winPop = window.open(p, n, features + ",scrollbars=yes,resizable=no,menubar=no,location=no");
    winPop.focus();
}

