// JavaScript Document

function MarcaMenu(Div)
{
	Div.style.color = "#f48000";
}

function DesmarcaMenu(Div)
{
	Div.style.color = "#006c38";
}

function EnviarEmail() 
{
	if (document.User.edt_Nome.value == "")
	{
		document.User.edt_Nome.style.backgroundColor = "#fff7d9";
		document.getElementById('Idedt_Nome').style.color = "#f48000";
		document.User.edt_Nome.focus();
		return;				
	}
	else
	{
		document.User.edt_Nome.style.backgroundColor = "#ffffff";
		document.getElementById('Idedt_Nome').style.color = "#00904a";
	}
	
	if (document.User.edt_Email.value == "")
	{
		document.User.edt_Email.style.backgroundColor = "#fff7d9";
		document.getElementById('Idedt_Email').style.color = "#f48000";		
		document.User.edt_Email.focus();
		return;				
	}
	else
	{
		document.User.edt_Email.style.backgroundColor = "#ffffff";
		document.getElementById('Idedt_Email').style.color = "#00904a";
	}	
	
	if ((document.User.edt_Email.value == "") || 
		  (document.User.edt_Email.value.length > 0 && 
		  (document.User.edt_Email.value.indexOf("@",0) == - 1 || 
		   document.User.edt_Email.value.indexOf(".",0) == - 1))) 	
	{	
		document.User.edt_Email.style.backgroundColor = "#fff7d9";
		document.getElementById('Idedt_Email').style.color = "#f48000";
		document.getElementById('Idedt_Email').innerHTML = 'Email inválido!';
		document.User.edt_Email.focus();		
		return;		
	}
	else
	{
		document.User.edt_Email.style.backgroundColor = "#ffffff";
		document.getElementById('Idedt_Email').style.color = "#00904a";
		document.getElementById('Idedt_Email').innerHTML = 'Email:';		
	}	
	
	if (document.User.edt_Assunto.value == "")
	{
		document.User.edt_Assunto.style.backgroundColor = "#fff7d9";
		document.getElementById('Idedt_Assunto').style.color = "#f48000";
		document.User.edt_Assunto.focus();
		return;				
	}
	else
	{
		document.User.edt_Assunto.style.backgroundColor = "#ffffff";		
		document.getElementById('Idedt_Assunto').style.color = "#00904a";
	}	
	
	if (document.User.edt_Mensagem.value == "")
	{
		document.User.edt_Mensagem.style.backgroundColor = "#fff7d9";
		document.getElementById('Idedt_Mensagem').style.color = "#f48000";
		document.User.edt_Mensagem.focus();		
		return;		
	}
	else
	{
		document.User.edt_Mensagem.style.backgroundColor = "#ffffff";
		document.getElementById('Idedt_Mensagem').style.color = "#00904a";
	}	
	
	with(document.User)
	{
		method = "post";
		action = "ContatoEnvia.asp";
		submit();
	}
}

function EnviarIndicacao() 
{
	if (document.User.edt_SeuNome.value == "")
	{
		document.User.edt_SeuNome.style.backgroundColor = "#fff7d9";
		document.getElementById('Idedt_SeuNome').style.color = "#f48000";
		document.User.edt_SeuNome.focus();
		return;				
	}
	else
	{
		document.User.edt_SeuNome.style.backgroundColor = "#ffffff";
		document.getElementById('Idedt_SeuNome').style.color = "#00904a";
	}
	
	if (document.User.edt_SeuEmail.value == "")
	{
		document.User.edt_SeuEmail.style.backgroundColor = "#fff7d9";
		document.getElementById('Idedt_SeuEmail').style.color = "#f48000";		
		document.User.edt_SeuEmail.focus();
		return;				
	}
	else
	{
		document.User.edt_SeuEmail.style.backgroundColor = "#ffffff";
		document.getElementById('Idedt_SeuEmail').style.color = "#00904a";
	}	
	
	if ((document.User.edt_SeuEmail.value == "") || 
		  (document.User.edt_SeuEmail.value.length > 0 && 
		  (document.User.edt_SeuEmail.value.indexOf("@",0) == - 1 || 
		   document.User.edt_SeuEmail.value.indexOf(".",0) == - 1))) 	
	{	
		document.User.edt_SeuEmail.style.backgroundColor = "#fff7d9";
		document.getElementById('Idedt_SeuEmail').style.color = "#f48000";
		document.getElementById('Idedt_SeuEmail').innerHTML = 'Email inválido!';
		document.User.edt_SeuEmail.focus();		
		return;		
	}
	else
	{
		document.User.edt_SeuEmail.style.backgroundColor = "#ffffff";
		document.getElementById('Idedt_SeuEmail').style.color = "#00904a";
		document.getElementById('Idedt_SeuEmail').innerHTML = 'Seu email:';		
	}
	
	if (document.User.edt_NomeAmigo.value == "")
	{
		document.User.edt_SeuNome.style.backgroundColor = "#fff7d9";
		document.getElementById('Idedt_NomeAmigo').style.color = "#f48000";
		document.User.edt_NomeAmigo.focus();
		return;				
	}
	else
	{
		document.User.edt_NomeAmigo.style.backgroundColor = "#ffffff";
		document.getElementById('Idedt_NomeAmigo').style.color = "#00904a";
	}
	
	if (document.User.edt_EmailAmigo.value == "")
	{
		document.User.edt_EmailAmigo.style.backgroundColor = "#fff7d9";
		document.getElementById('Idedt_EmailAmigo').style.color = "#f48000";		
		document.User.edt_EmailAmigo.focus();
		return;				
	}
	else
	{
		document.User.edt_EmailAmigo.style.backgroundColor = "#ffffff";
		document.getElementById('Idedt_EmailAmigo').style.color = "#00904a";
	}	
	
	if ((document.User.edt_EmailAmigo.value == "") || 
		  (document.User.edt_EmailAmigo.value.length > 0 && 
		  (document.User.edt_EmailAmigo.value.indexOf("@",0) == - 1 || 
		   document.User.edt_EmailAmigo.value.indexOf(".",0) == - 1))) 	
	{	
		document.User.edt_EmailAmigo.style.backgroundColor = "#fff7d9";
		document.getElementById('Idedt_EmailAmigo').style.color = "#f48000";
		document.getElementById('Idedt_EmailAmigo').innerHTML = 'Email inválido!';
		document.User.edt_EmailAmigo.focus();		
		return;		
	}
	else
	{
		document.User.edt_EmailAmigo.style.backgroundColor = "#ffffff";
		document.getElementById('Idedt_EmailAmigo').style.color = "#00904a";
		document.getElementById('Idedt_EmailAmigo').innerHTML = 'Email do amigo:';		
	}
	
	with(document.User)
	{
		method = "post";
		action = "IndicaEnvia.asp";
		submit();
	}
}

function EnviarCadastroEmail() 
{	
	if (document.EmailCadastro.edt_EmailCadastro.value == "")
	{
		document.EmailCadastro.edt_EmailCadastro.style.backgroundColor = "#fff7d9";
		document.getElementById('Idedt_EmailCadastro').style.color = "#ffffff";		
		document.EmailCadastro.edt_EmailCadastro.focus();
		return;				
	}
	else
	{
		document.EmailCadastro.edt_EmailCadastro.style.backgroundColor = "#ffffff";
		document.getElementById('Idedt_EmailCadastro').style.color = "#013452";
	}	
	
	if ((document.EmailCadastro.edt_EmailCadastro.value == "") || 
		  (document.EmailCadastro.edt_EmailCadastro.value.length > 0 && 
		  (document.EmailCadastro.edt_EmailCadastro.value.indexOf("@",0) == - 1 || 
		   document.EmailCadastro.edt_EmailCadastro.value.indexOf(".",0) == - 1))) 	
	{	
		document.EmailCadastro.edt_EmailCadastro.style.backgroundColor = "#fff7d9";
		document.getElementById('Idedt_EmailCadastro').style.color = "#ffffff";
		document.getElementById('Idedt_EmailCadastro').innerHTML = 'Email inválido!';
		document.EmailCadastro.edt_EmailCadastro.focus();		
		return;		
	}
	else
	{
		document.EmailCadastro.edt_EmailCadastro.style.backgroundColor = "#ffffff";
	}
	
	with(document.EmailCadastro)
	{
		method = "post";
		action = "CadastroEmail.asp?Rotina=IncluirEmail";
		submit();
	}
}
