function LaunchNewsletter(pageURL) {   
    /*
    var w = 610;
    var h = 600;
    
    var left = (screen.width / 2) - (w / 2);
    var top = (screen.height / 2) - (h / 2);
        
    window.open(pageURL, 'IndexPopup', 'toolbar=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, width=' + w + ', height=' + h + ', top=' + top + ', left=' + left);    
    */
    location.href = pageURL;
} 
