function color(obj) {
	 obj.style.backgroundColor = "#FFFFFF";
}

moderadio = "";

function radio(mode) {
	if (mode.value!='question') { 
 	document.getElementById('testradio').innerHTML = "<strong>Année de naissance</strong>";
	} else {
	 document.getElementById('testradio').innerHTML = "Année de naissance";	
	}
	moderadio = mode.value;
}

function check() {	
	if (moderadio=='inscription') {
		if ((document.f.name.value!='') && 
		 (document.f.birthday.value!='') && 
		 (document.f.email.value!='')) {
		return true;
	  } else {  
		$color ="#FFCCCC";
		if (document.f.name.value=='') { document.f.name.style.backgroundColor = $color; } 
		if (document.f.birthday.value=='') { document.f.birthday.style.backgroundColor = $color; } 
		if (document.f.email.value=='') { document.f.email.style.backgroundColor = $color; } 
		return false;
	  }	
	} else {
	  if ((document.f.name.value!='') && 
		 (document.f.email.value!='')) {
		return true;
	  } else {  
		$color ="#FFCCCC";
		if (document.f.name.value=='') { document.f.name.style.backgroundColor = $color; } 
		if (document.f.email.value=='') { document.f.email.style.backgroundColor = $color; } 
		return false;
	  }
	}
}
