<!--
/***********************************************
* TI functions - Ajmal Saifudeen
***********************************************/
function getWNQuote(){
var form = document.wnForm;
var afcode = 'sydweb';
var selInd = form.wn_country.selectedIndex;
var countryName = form.wn_country[selInd].value;
var loc;
if (countryName != '-1'){
loc = "http://www.worldnomads.com/selectcountry.aspx?cc=" + countryName + "&affiliate=" + afcode;
loadWorldNomadsPage(loc);
}
else
alert("Please Select the country of your permanent residence and then click on the Get a Quote... button.");
}
function loadWorldNomadsPage( url ){
var urlToLoad = escape(url);
urlToLoad = baseFolder + "/travel_insurance/get_travel_insurance/?partnerURL=" + urlToLoad;
goTo( urlToLoad, "internal" );
}
function takeMeToWorldNomads( url ){
var urlToLoad = escape(url);
loc = "http://www.melbourneontheweb.com/cgi-bin/travelInsurance.py?url=" + urlToLoad;
document.location = baseFolder + "/travel_insurance/index.shtml";
goTo(loc, "new");
}
function showTerms(){
document.getElementById("menu_termsLayer").style.display = '';
document.location = "#terms";
}
-->
