function OffRamp()
//  Syntax: <a href="yoururl" onclick="return OffRamp();">Your Link</a>
{ 
    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 ExternalLinks() // JWB
//  Syntax <a href="yoururl" rel=external">Your Link</a>
//  This function allows opening links in a new window while preserving XHTML 1.0 Strict compliance
{ 
 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;

    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;
        }
    }