$D = function(id) 
{
	return document.getElementById(id);
}
function valida()
{		
	var retorno = '0';	
	//retorno += abreDiv('area','area');		
	retorno += abreDiv('nome','nome');		
	retorno += abreDiv('email','email');
	retorno += abreDiv('emailObrigatorio','email');
	retorno += abreDiv('tel','tel');		
	retorno += abreDiv('comentarios','comentarios');		
	if(retorno!='0')		
	{			
		return false;			
	}
}

function abreDiv(idV,idFocus)
{	
	if($D(idV).value=='')	
	{		
		//alert(idV);
		$D(idFocus).style.backgroundColor = '#FEC6BD';
		if($D('hiddenFocus').value=='2')
		{ 
			//alert('ok');
			  $D(idFocus).focus();	
			  $D('hiddenFocus').value = '1';
		}
		return 1;	
	}
	else	
	{		
		$D(idFocus).style.backgroundColor = '';			
		return '';	
	}
}
function validaEmail(id)
{	
		$D(id).style.backgroundColor = '#FEC6BD';		
		var email = $D(id).value;		
		if(email.indexOf("@")==-1 || email.indexOf(".")==-1)		
		{				
			$D(id).style.backgroundColor = '#FEC6BD';	
			$D('emailObrigatorio').value = '';
			
			$D(id).focus();	
			return false;		
		}
		else
		{
			$D(id).style.backgroundColor = '';
			$D('emailObrigatorio').value = '1';
		}		
}
function pulaTelCel(id,nextId)
{
	var numero = document.getElementById(id).value;
	if(numero.length==2)
	{
		document.getElementById(id).value = numero+" ";	
	}
	else if(numero.length==7)
	{
		document.getElementById(id).value = numero+"-";	
	}
	else if(numero.length==12)
	{
		document.getElementById(nextId).focus();	
	}
	
}
