function changeTdColor(cual,color){
	if (document.all)
	{
	 var thestyle= eval('document.all.'+cual+'.style');
	 thestyle.backgroundColor=color;
	 }
}
function noTDcolor(cual){
	var thestyle= eval('document.all.'+cual+'.style');
	 thestyle.backgroundColor="transparent";

}
function chkForm(theform){
	if(theform.nombre.value==''){
		theform.nombre.focus();
		alert('Debe especificar su nombre');
		return false;
	}
	if(theform.email.value==''){
		theform.email.focus();
		alert('Debe especificar su dirección electrónica');
		return false;
	}
	if(theform.observaciones.value=''){
		theform.observaciones.focus();
		alert('Debe escribir el texto del mensaje en el cajetín de Observaciones');
		return false;
	}
	return true;
}