
function popup(name) {

var wid = 780, hei = 525;

// wid = screen.availWidth-50;
// hei = screen.availHeight-80;

var w = 800, h = 600;

if (document.all || document.layers) {
   w = screen.availWidth;
   h = screen.availHeight;
}

var leftPos = ((w-wid)/2), topPos = ((h-hei)/2);

window.open((name+'.htm'),name,'toolbar=no,status=no,scrollbars=yes,location=no,menubar=no,directories=no,width='+wid+',height='+hei+',top='+topPos+',left='+leftPos);
}


function linksubmit() {

	var wide=600, high=500;

    if (document.all)
        var xMax = screen.width, yMax = screen.height;
    else
        if (document.layers)
            var xMax = window.outerWidth, yMax = window.outerHeight;
        else
            var xMax = 640, yMax=480;

    var xOffset = (xMax - wide)/2, yOffset = (yMax - high)/2;

    window.open('linksubmit.htm','linksubmitwindow',
    'width='+wide+',height='+high+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0');
}
