/*<!-- mp_trans_disable_start -->*/ 
var ProductFareEstimate=Class.create();ProductFareEstimate=Base.extend({constructor:function()
{Event.observe(window,'load',this.windowOnLoad.bindAsEventListener(this));},windowOnLoad:function(event)
{if($('saleCountry'))
Event.observe($('saleCountry'),'change',this.onCountryChange.bindAsEventListener(this));if($('saleClass'))
Event.observe($('saleClass'),'change',this.onCountryChange.bindAsEventListener(this));},onCountryChange:function(event)
{if(Form.Element.getValue($('saleCountry'))!='NONE')
{if($('fareEstimateForm').action.match(/\?/gi))
var sParamSeparator="&";else
var sParamSeparator="?";new Ajax.Updater($('fareResults'),$('fareEstimateForm').action.replace(/#fareEstimateForm/gi,'')+sParamSeparator+'ajaxCall=1&'+Form.serialize($('fareEstimateForm')));$('formButton').focus();}}});page=new ProductFareEstimate();var Demo=Base.extend({constructor:function()
{Event.observe(window,'load',this.windowOnLoad.bindAsEventListener(this));},windowOnLoad:function()
{if($('demoLink'))
Event.observe($('demoLink'),'click',this.onDemoLinkClick.bindAsEventListener(this));},onDemoLinkClick:function(event)
{var link=$('demoLink');window.open(link.href,link.target,'width=750,height=425');Event.stop(event);}});function openExternalWinPlanner(strLink)
{var ver=getInternetExplorerVersion();if(ver>=7.0){var itineraryWindow=window.open(strLink,"ExternalWin","menubar=yes,location=yes,scrollbars=yes,resizable=yes,width=1000,height=700,status=yes,toolbar=yes,directories=no");}else{var itineraryWindow=window.open(strLink,"ExternalWin","menubar=yes,location=no,scrollbars=yes,resizable=yes,width=1000,height=700,status=yes,toolbar=yes,directories=no");}
itineraryWindow.focus();if(itineraryWindow<=0)
return true;else
return false;}
var demo=new Demo();
 /*<!-- mp_trans_disable_end -->*/