//This script controls the pop-ups when a client's site is launched from WebCentral

function pop(url){   
     var winFeatures="toolbar=yes, status=yes, menubar=yes, location=yes, scrollbars=yes, resizable=yes, height=500, width=800";
    
     newWin = window.open(url, "newWin", winFeatures);
     newWin.focus();
}

