﻿// JScript File

// opens a new "PopUp" window
function newWin(url,title,popW,popH)
{
    // determine top and left position to center window on screen
    var w = 480, h = 340;
    if (document.all || document.layers) {
       w = screen.availWidth;
       h = screen.availHeight;
    }
    var leftPos = (w-popW)/2, topPos = (h-popH)/2;    
    // set the options for the new window
    var options="scrollbars=yes,resizable=no,status=yes,toolbar=no,location=no,width=" + popW + ",height=" + popH + ",top=" + topPos + ",left=" + leftPos
//    var options="scrollbars=yes,resizable=no,status=yes,toolbar=no,location=no,width=" + popW + ",height=" + popH 
    // open the new window
    window.open(url, title, options)
}

