
function winpop(wsrc) {
var pw = 580;
var h = 600;

var winl = (screen.width - pw) / 2;
var wint = (screen.height - h) / 2;
win = window.open(wsrc,"help_windowpopup","top=" + wint + ",left=" + winl + ",status=no,resizable=no,height=" + h + ",width=" + pw + ",toolbar=no,menubar=yes,location=no,scrollbars=yes");
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

