// JavaScript Document

function popup(url, winX, winY, name) {
    if(navigator.appName == "Microsoft Internet Explorer") {
        screenY = window.screen.availHeight-25;
        screenX = window.screen.availWidth-25;
    } else {
        screenY = window.outerHeight-25;
        screenX = window.outerWidth-25;
    }
    leftPos = (screenX-winX);
    topPos = (screenY-winY);
    settings = "toolbar=yes,location=yes,directories=no,"+
              "status=yes,menubar=no,scrollbars=yes,"+
              "resizable=yes,width="+winX+",height="+winY+","+
              "left="+leftPos+", top="+topPos+"";
    NewWindow=window.open(url,name,settings);
    NewWindow.focus();
}

function popup2(url, winX, winY, name) {
    if(navigator.appName == "Microsoft Internet Explorer") {
        screenY = window.screen.availHeight-25;
        screenX = window.screen.availWidth-25;
    } else {
        screenY = window.outerHeight-25;
        screenX = window.outerWidth-25;
    }
    leftPos = (screenX-winX);
    topPos = (screenY-winY);
    settings = "toolbar=no,location=no,directories=no,"+
              "status=yes,menubar=no,scrollbars=no,"+
              "resizable=no,width="+winX+",height="+winY+","+
              "left="+leftPos+", top="+topPos+"";
    NewWindow=window.open(url,name,settings);
    NewWindow.focus();
}


