// Check if Customer Care Location has been selected
<!--
function ValidateForm(){
	window.name="queryform";
	var thisForm = document.forms[0];
	if (thisForm.alias.value==''){
		window.open('/chooselocation.asp?open=0', 'locations', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=480,height=500,top=40,left=40');
		thisForm.target='locations'
		thisForm.action='/chooselocation.asp'
		return true;
	} 
	else{ //send to booking engine.
		thisForm.target=self.name
		thisForm.action='http://myr.sax.softvoyage.com/cgi-bin/handler.cgi'
		return true;
   }
}
//-->