﻿/*
    Author: Mauricio Beltran
    Date: 5/5/2009
    Description: Functions required in the website
*/

function openExternalLink(strURL) {
    var bResponse = confirm('You are leaving the CREON.com web site to a site that is not under the control of Abbott. Abbott is not responsible for the contents of any such site or any further links from such site. Abbott is providing these links to you only as a convenience and the inclusion of any link does not imply the endorsement of the linked site by Abbott. You should also be aware that the linked site may be governed by its own set of terms and conditions and privacy policy for which Abbott has no responsibility. \n\nConversely, the presence of this link does not imply the linked site\'s endorsement of CREON.com or Abbott. \n\nDo you wish to leave this site?');
    if (bResponse) { window.open(strURL); }
}


function goToPDF(obj) {
    var strURL = obj.options[obj.selectedIndex].value;
    
    if ((strURL != "") && (strURL != "Select")) {
        document.location.href = strURL;
    }
}