
function affiche_elmnt(id_affiche,elmt, value){

	if(elmt.value == value)
		document.getElementById(id_affiche).style.display='block';
	else
		document.getElementById(id_affiche).style.display='none';
}

function init_img(element, url){
	
}

function change_img(id_cible, new_src, margin_top){
	parent_img = $("#"+id_cible).parent();
	img_load = "<img id='"+id_cible+"' src='../img/commun/loading.gif' />";
	parent_img.html(img_load);
	
	img = "<img id='"+id_cible+"' src='"+new_src+"' />";
	$(img).load(); 
	$(img).ready(function (margin_top) {
		parent_img.html(img);
		$("#"+id_cible).css("margin-top", parseInt(margin_top));
	}); 
	
	
	
}

function safemail(user, domain, suffix){
	document.write("<a href='mailto:" + user + "@" + domain + "." + suffix + "' >"+user + "@" + domain + "." + suffix+"<\/a>");
}


