/**
 * @author Andr� @ ROM - 27.3.08
 * 
 * 
 */


function compte()
{		 
		 if (document.getElementById("registration_form").style.display == "none")
		 {
		 	 show ();
		 }
		 else
		 {
		 	 hide ();
		 }	
}
	
function show()
{		
		document.getElementById("registration_form").style.display = "block";
		return true;
}


function hide()
{
		document.getElementById("registration_form").style.display = "none";		
		return true;		
}
