//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=350, width=730";
    
     newWin = window.open(url, "newWin", winFeatures);
     newWin.focus();
}
