//Off Ramp Alert
function offRamp(theSite){
	
     return offRampStandard_local(2,'humate',null,theSite,null,false);
	}

/* CURRENT FUNCTIONS */
	function offRampStandard_local(langIncluded,siteName,windowName,URL,otherOptions,returnEnabled) 
	{	
				
		var aLanguage = new Array(2);

		langIncluded = langIncluded - 1	
		aLanguage[0] = "The site you are accessing is maintained by a third party over whom CSL Behring has no control. CSL Behring does not review, approve or necessarily endorse viewpoints, inferences, or conclusions stated in or implied by the content of this site. CSL Behring is not responsible for third-party content or the consequences of your use thereof. \n\n Do you wish to continue?";
		aLanguage[1] = "The site you are accessing is maintained by a third party over whom CSL Behring has no control. CSL Behring does not review, approve or necessarily endorse viewpoints, inferences, or conclusions stated in or implied by the content of this site. CSL Behring is not responsible for third-party content or the consequences of your use thereof. \n\n Do you wish to continue?";	  

		if (windowName == null) windowName = '';
		if (otherOptions == null) otherOptions = '';
		
  		if (confirm(aLanguage[langIncluded]))
  		{
			if (URL != null) window.open(URL,windowName ,otherOptions);
			if (returnEnabled) return true;
		}
		else	
			if (returnEnabled) return false;
	}
		
		/* function that prompts the user to let them know that they are leaving the site.
		This function should be used....blah blah add pra stuff for why.
	*/