	function verify(x){
		if (x.hidRoute1.value == ""){
	 		alert("You must enter an outward Journey");
	 		CancelEvent ();
	 		document.frmform.hidRoute1.focus ()
	 		return false;
		}
		if (x.hidNoPax.value == ""){
	 		alert("You must choose the number of passengers");
	 		CancelEvent ();
	 		document.frmform.hidNoPax.focus ()
	 		return false;
		}
	}		
	function make_return(x){
		arr = x.hidRoute1.value.split(" - ");
		x.hidRoute2.value = arr[1]+" - "+arr[0];
	}
	function delRoute(id){
		id.selectedIndex = 0;
		return;
	}

	function CancelEvent () {
	var bIsIE;
		bIsIE = (navigator.appVersion.indexOf("MSIE") > 0);
		if (bIsIE && (window.event != null)) {
			window.event.cancelBubble = true;
			window.event.returnValue = false;
		}
	}
	function ChangeCurrency() {
		document.frmform.hidCurrency.selectedIndex = document.frmform.hidReferComp.selectedIndex;
	}