﻿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 Shire has no control.  Shire does not review, approve or necessarily endorse viewpoints, inferences, or conclusions stated in or implied by the content of this site.  Shire 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 Shire has no control.  Shire does not review, approve, or necessarily endorse viewpoints, inferences, or conclusions stated in or implied by the content of this site. Shire 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;
	}
