function check_(f){
	var i,o=f.obligatorios.value.split(',')
	for(i=0;i<o.length;i++){
		var c=eval('f.'+o[i])
		if(c.value.length==0){
			alert('Complete el campo '+f.nombresObligatorios.value.split(',')[i])
			c.focus()
			return false
		}
	}
	if(typeof f.email!='undefined')
		if(f.email.value.length>0&&f.email.value.indexOf('@')<0){
			alert('Introduzca una dirección válida')
			f.email.focus()
			f.email.select()
			return false
		}
	if((typeof f.clave0!='undefined')&&(typeof f.clave1!='undefined'))
		if(f.clave0.value!=f.clave1.value||f.clave0.value.length==0){
			alert('Introduzca una clave coincidente en ambas casillas.')
			f.clave0.value=''
			f.clave1.value=''
			f.clave0.focus()
			return false
		}
	return true
}
