function WinPop(winName, winSrc, winWidth, winHeight, scroll, menubar, toolbar, status) {
if (!scroll) { scroll = "no" }
var winLeft = (screen.width-winWidth)/2;
var winTop = 71;
wname=window.open(winSrc, winName, "menubar="+menubar+",toolbar="+toolbar+
",resizable=no,scrollbars="+scroll+",status="+status+",width="+winWidth+
",height="+winHeight+",top="+winTop+",left="+winLeft);
}

function WinPop2(winName, winSrc, winWidth, winHeight, scroll, menubar, toolbar, status, location) {
if (!scroll) { scroll = "no" }
var winLeft = (screen.width-winWidth)/2;
var winTop = 10;
wname=window.open(winSrc, winName, "menubar="+menubar+",toolbar="+toolbar+
",resizable=no,scrollbars="+scroll+",status="+status+",location="+location+",width="+winWidth+
",height="+winHeight+",top="+winTop+",left="+winLeft);
}

function WinPop3(winName, winSrc, winWidth, winHeight, scroll, menubar, toolbar, status, location) {
if (!scroll) { scroll = "no" }
var winLeft = (screen.width-winWidth)/2;
var winTop = 10;
wname=window.open(winSrc, winName, "menubar="+menubar+",toolbar="+toolbar+
",resizable=yes,scrollbars="+scroll+",status="+status+",location="+location+",width="+winWidth+
",height="+winHeight+",top="+winTop+",left="+winLeft);
}

function over(text) {
    window.status = text;
    return true;
}

function out() {
    window.status = '';
    return true;
}