// JavaScript Document
function changeCountry(countryname)
{
	if(countryname != "null")
	{
		location.href="search.asp?action=search&countryname="+countryname;	
	}
}
function changeCity(country,city)
{
	if(city != "null")
	{
		location.href="search.asp?action=search&countryname="+country+"&cityName="+city;	
	}
}