String.prototype.trim = function(){ return this.replace(/^\s+|\s+$/g,'') }


function comptelf(numero){
if(isNaN(numero.trim())){
	alert('El teléfono sólo debe contener números, ni espacios ni signos de puntuación.'); 
	document.contactar.telefono.value='';
	}	
}

function comptelf2(numero){
if(numero.trim()!='' && numero.trim().length < 9){
	alert('El teléfono debe contener como mínimo 9 cifras!'); 
	document.contactar.telefono.value='';
	}	
}


function compruebacont(){
var error = 0;

if(document.getElementById('nom').value.trim()==''){
	document.getElementById('nom').style.backgroundColor='#444444';
	document.getElementById('nom').style.color='#ffffff';
	error=1;
}	
if(document.getElementById('tel').value.trim()=='' && document.getElementById('email').value.trim()==''){
	document.getElementById('tel').style.backgroundColor='#444444';
	document.getElementById('tel').style.color='#ffffff';
	document.getElementById('email').style.backgroundColor='#444444';
	document.getElementById('email').style.color='#ffffff';
	error=1;
}	
if(error == 1){
alert('Debes rellenar el nombre y el teléfono o email.')
}else{
document.contactar.submit();	
}
}
