function recharge(form)
{
	form.submit();
}

function survol(type, url_image, id_image_cible) {

	var image_cible = document.getElementById(id_image_cible);
	var bouton = url_image;

	if (type == 1) {
		image_cible.src = "http://www.toulouse-immobilier.eu/boutic-immo/images/"+bouton+"_survol.gif";
	} else{
		image_cible.src = "http://www.toulouse-immobilier.eu/boutic-immo/images/"+bouton+".gif";
	}
}

function decolore(rangee)
{
	nom = navigator.appName;

	if(nom == 'Microsoft Internet Explorer')
	{
		rangee.style.cursor = 'hand';
	}
	else
	{
		rangee.style.cursor = 'pointer';
	}
	rangee.className = 'liste_survolee';  
}

function colore(rangee,classe)
{
	rangee.className = classe;
}

function change_photo(id, id_dest) {

	var photo_src = document.getElementById(id);
	var photo_dst = document.getElementById(id_dest);
	var tmp = photo_dst.src;

	photo_src.src = photo_src.src.replace("_vignette", "");

	photo_dst.src = photo_src.src;
	photo_src.src = tmp;
}