﻿function MM_openBrWindow(theURL, winName, features)
{
    window.open(theURL,winName,features);
}

function newWindow(windowName, URL, width, height, scrolling)
{
    width = width || 400;
    height = height || 360;
    scrolling = scrolling || 0;
    var topX = (window.screen.width / 2) - ( width / 2);
    var topY = (window.screen.height / 2) - ( height / 2);
    window.open(URL, windowName, 'width=' + width + ',height=' + height + ',location=no,resizable=no,scrollbars=' + scrolling + ',screenX=' + topX + ',screenY=' + topY);
    //window.open(URL,windowName);
}

