function mouseOver(continent)
{
var str=continent.replace("world/", "");
str=str.replace(".png", "");
document.getElementById("rootpic").src = continent;
document.getElementById('africa').className='';
document.getElementById('antarctica').className='';
document.getElementById('asia').className='';
document.getElementById('australia').className='';
document.getElementById('caribbean').className='';
document.getElementById('central_america').className='';
document.getElementById('europe').className='';
document.getElementById('middle_east').className='';
document.getElementById('north_america').className='';
document.getElementById('south_america').className='';
document.getElementById(str).className='select';
}
function mouseOut()
{ /*
document.getElementById("rootpic").src = 'world/root.png';
document.getElementById('africa').className='';
document.getElementById('antarctica').className='';
document.getElementById('asia').className='';
document.getElementById('australia').className='';
document.getElementById('caribbean').className='';
document.getElementById('central_america').className='';
document.getElementById('europe').className='';
document.getElementById('middle_east').className='';
document.getElementById('north_america').className='';
document.getElementById('south_america').className='';*/
}
function onClick(str)
{
	document.getElementById('country_list_africa').style.display = 'none';
	document.getElementById('country_list_antarctica').style.display = 'none';
	document.getElementById('country_list_asia').style.display = 'none';
	document.getElementById('country_list_australia').style.display = 'none';
	document.getElementById('country_list_caribbean').style.display = 'none';
	document.getElementById('country_list_central_america').style.display = 'none';
	document.getElementById('country_list_europe').style.display = 'none';
	document.getElementById('country_list_middle_east').style.display = 'none';
	document.getElementById('country_list_north_america').style.display = 'none';
	document.getElementById('country_list_south_america').style.display = 'none';
	document.getElementById('country_list_'+str).style.display = 'block';
	
	document.getElementById(str).className = 'select';
}

if (navigator.appName == "Microsoft Internet Explorer") 
{
	document.write('<link href="ie.css" rel="stylesheet" type="text/css" />');
}

function ajax_country(spn,keyword,loc)
{
	//alert(loc+"ajax_country.php?type="+spn+"&keyword="+keyword);
	if (window.XMLHttpRequest)
	{// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	}
	else
	{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	
	xmlhttp.onreadystatechange=function()
	{
		if (xmlhttp.readyState==4 && xmlhttp.status==200)
		{
			document.getElementById(spn).innerHTML=xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET",loc+"ajax_country.php?type="+spn+"&keyword="+keyword+"&loc="+loc,true);
	xmlhttp.send();
	
}
