function getId(id)
{
	return document.getElementById(id);
}
function stripslashes(str)
{
	str = str.replace(/\\'/g, '\'');
	str = str.replace(/\\"/g, '"');
	tr = str.replace(/\\0/g, '\0');
	str = str.replace(/\\\\/g, '\\');
	return str;
}
function afficher_region(region)
{
	getId('info_region').innerHTML = stripslashes(region);
}

function cacher_region()
{
	getId('info_region').innerHTML = '';
}
function carte_over(pays, region, lib_region)
{
	getId('img_carte').src = '/images-location/' + pays + '/' + region + '.gif';
	getId('img_carte').style.cursor = 'pointer';
	afficher_region(lib_region);
}
function carte_out(pays)
{
	getId('img_carte').src='/images-location/' + pays + '.gif';
	getId('img_carte').style.cursor='crosshair';
	cacher_region();
}
