
//Simple script to open a new "popup" window

if(window.open)
{
    var newWindow;
    function openNewWindow(url, name, windowWidth, windowHeight)
    {
        newWindow = window.open(url, name, 'height=' + windowHeight + ',width=' + windowWidth + ',resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no');
    if (window.focus) newWindow.focus();
     return false;
    }  
}

