<!--
//#######################################
//Send the location to PHP Function
//#######################################
function change_country(cty){
	document.location.href = "/scripts/switch_country.php?country="+cty+"&location="+document.URL;
}

//##########################
// Fonction de redirection
//##########################
function goTo(where)
{
	window.location.href = where;
}

//#################################
// Fonction pour effacer un champ
//#################################
var erasecheck = 0;
function erase(input)
{
	if(erasecheck == 0){
		document.getElementById(input).value = "";
		erasecheck = 1;
	}
}

//#############################################
// Fonction pour le rollover du champ domaine
//#############################################
function inputCheck(etat)
{
	if(etat == 'on')
	{
		document.getElementById("bg_input").style.backgroundImage = "url(/images_top_dom_on.gif)";
	}
	else
	{
		document.getElementById("bg_input").style.backgroundImage = "url(/images_top_dom_off.gif)";
	}
}
//-->