﻿    function confirmation() 
    {
        return confirm("You are accessing a Web site maintained by a third party over whom CSL Behring has no control.\nCSL Behring is not responsible for, and accepts no liability for, information contained in any third-party Web site.\n\nDo you wish to continue?")
    }

    function OffRamp() {
        return confirmation();
    }
    
    
    function hiddenText(iid,value,classname)
    {
        document.getElementById(iid).value=value;
        document.getElementById(iid).className=classname;
    }
    function displayImg(iid,value,classname)
    {
        if(document.getElementById(iid).value =="")
        {
	        document.getElementById(iid).value=value;
	        document.getElementById(iid).className=classname;
        }
    }
    
    function ExternalLinks() 
    { 
     if (!document.getElementsByTagName) return; 
     var anchors = document.getElementsByTagName("a"); 
     for (var i=0; i<anchors.length; i++) { 
       var anchor = anchors[i]; 
       if (anchor.getAttribute("href") && 
           anchor.getAttribute("rel") == "external") 
         anchor.target = "_blank"; 
     } 
    } 
    window.onload = ExternalLinks;
