// JavaScript Document

	function ValidaCampo(idCampo)
	{
		var VarFrm = document.envia_email;
		var campo = document.getElementById(idCampo);
		
		if(campo.name == 'nome')
		{
			if(campo.value == 0)
			{
				campo.style.background='#e7dfd5 url(imagens/layout/wrong_form.gif) no-repeat right';
				//return false
			}
			else
			{
				campo.style.background='url(imagens/layout/right_form.gif) no-repeat right';
			}
		}
		else if(campo.name == 'email')
		{
			if(campo.value == 0)
			{
				campo.style.background='#e7dfd5 url(imagens/layout/wrong_form.gif) no-repeat right';
			}
			else
			{
				VarCheckMail=campo.value;
				VarCheckArroba=VarCheckMail.indexOf('@');
				VarCheckPonto=VarCheckMail.lastIndexOf('.');
				VarCheckFim=VarCheckMail.length -1;
		
				if(VarCheckArroba == -1 || VarCheckPonto == -1 || VarCheckArroba >= VarCheckPonto || VarCheckPonto == VarCheckFim)
				{
					campo.style.background='#e7dfd5 url(imagens/layout/wrong_form.gif) no-repeat right';
					//return false
				}
				else
				{
					campo.style.background='url(imagens/layout/right_form.gif) no-repeat right';
				}
			}
		}
	}
	
	function LimpaForm()
	{
		if(confirm('The form information will be deleted.\n Are you sure you want to procced?')){
			document.envia_email.reset();
			$('msg_contato').innerHTML='';
			document.envia_email.nome.focus();
		}
	}
