
/**
 * 	@author Laurent Doudiès
 * 	@copyright Ekoya(c)-2008
 *	
 */

function displayForm(elt1,elt2){
	$("#"+elt1+"").hide();
	$("#"+elt2+"").show();
}

function hideForm(elt){
	$("#"+elt+"").hide();
}