
function openWindow(url)
{
    if (url.length > 0)
    {
        var newWindow = window.open(url, 'Brand_Site', 'scrollbars=yes,resizable=yes,height=500,width=850');
        if (window.focus) {newWindow.focus()}
    }
}