﻿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;
	}
function openExternalWin(product, url) {
    if(! confirm("You Are About to Leave " + product + ".com.\n\nThis link will take you to a Web site maintained by a third party who is responsible for its content and privacy policy. Our privacy policy does not apply to this site. We encourage you to read the privacy policy of every Web site you visit. \n\nClick Cancel to return to " + product + ".com or OK to continue"))
        return;

    var externalWin = window.open(url,null,"toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width=600,height=500");
    if (externalWin.opener == null)
        externalWin.opener=window;
        externalWin.opener.name="opener";
}