Forum Moderators: open
function popUp() {
if (document.all ¦¦ document.layers) {
var w = screen.availWidth;
var h = screen.availHeight;
}
var popW = 800, popH = 570; //485
var leftPos = (w-(popW+10))/2, topPos = (h-(popH+20))/2;
window.open('index.html','popup_mis','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos);
}