<!--
	//We will try moving this in here to see if that works.
//!-->
function getCounties(main)
{
var val=main.airportSelect.options[main.airportSelect.options.selectedIndex].value; 
var internal = main.internal.value;
self.location='index2.php?internal=' + internal + '&airport=' + val ;
}
function reload(main)
{
var ap = main.airportSelect.options[main.airportSelect.options.selectedIndex].value;	
var val=main.county.options[main.county.options.selectedIndex].value; 
var internal = main.internal.value;
self.location='index2.php?internal=' + internal + '&airport='+ap+'&county=' + val ;
}
function reload3(main)
{
var ap = main.airportSelect.options[main.airportSelect.options.selectedIndex].value;
var val=main.county.options[main.county.options.selectedIndex].value; 
var val2=main.townList.options[main.townList.options.selectedIndex].value; 
var internal = main.internal.value;
self.location='index2.php?internal=' + internal + '&airport='+ap+'&county=' + val + '&town=' + val2 ;
}
function reload4(main)
{
var val=main.county.options[main.county.options.selectedIndex].value; 
var val2=main.townList.options[main.townList.options.selectedIndex].value; 
var val3=main.resort.options[main.resort.options.selectedIndex].value; 
var ap = main.airportSelect.options[main.airportSelect.options.selectedIndex].value;
var internal = main.internal.value;
self.location='index2.php?internal=' + internal + '&airport='+ap+'&country=' + val + '&airport=' + val2 + '&resort=' + val3 ;
}

function start_again(main){
self.location='index2.php?country=Select%20Country&airport=Select%20Airport&resort=Select%20Resort';
}
function submitform()
		{
  		document.main.submit();
		}

