
/* --------------------------------------------------------------------------------*/

function agenti(id){
eval("window.location.href=\"./agenti_eu.php?continente=europa&id="+id+"\"");
// alert(id);
}

function agenti_me(id){
eval("window.location.href=\"./agenti_me.php?continente=europa&id="+id+"\"");
// alert(id);
}


// CHANGE COUNTRY
function country () {
		if(document.getElementById('country').options[document.getElementById('country').selectedIndex].value != ""){
			document.location.href = document.getElementById('country').options[document.getElementById('country').selectedIndex].value;
		}
}

// CHANGE CONTINENT
function continente(){
		if(document.getElementById('continenti').options[document.getElementById('continenti').selectedIndex].value != ""){
			document.location.href=document.getElementById('continenti').options[document.getElementById('continenti').selectedIndex].value;
		}
}

