function valida_orcamento(){ 

	if(document.frm.orcamento_nome.value == '')
	{
		document.getElementById('orcamento_cp_nome').style.color = "#FF3300";
		document.frm.orcamento_nome.focus();
		return false;
	}	
	if(document.frm.orcamento_ddd.value == '')
	{
		document.getElementById('orcamento_cp_tel').style.color = "#FF3300";
		document.frm.orcamento_ddd.focus();
		return false;
	}
	if(document.frm.orcamento_tel.value == '' || document.frm.orcamento_tel.value.length < 8)
	{
		document.getElementById('orcamento_cp_tel').style.color = "#FF3300";
		document.frm.orcamento_tel.focus();
		return false;
	}
	if(document.frm.orcamento_mail.value == '')
	{
		document.getElementById('orcamento_cp_mail').style.color = "#FF3300";
		document.frm.orcamento_mail.focus();
		return false;
	}
	if(document.frm.orcamento_servico.value == '1')
	{
		document.getElementById('orcamento_cp_servico').style.color = "#FF3300";
		return false;
	}

}



function color_orcamento_nome(){

	if(document.frm.orcamento_nome.value != '')
	{
		document.getElementById('orcamento_cp_nome').style.color = "#999999";
	}	
}

function color_orcamento_ddd() {

	if(document.frm.orcamento_ddd.value != '')
	{
		document.getElementById('orcamento_cp_tel').style.color = "#999999";
	}
}

function color_orcamento_tel() {

	if(document.frm.orcamento_tel.value != '')
	{
		document.getElementById('orcamento_cp_tel').style.color = "#999999";
	}
}

function color_orcamento_mail() {

	if(document.frm.orcamento_mail.value != '')
	{
		document.getElementById('orcamento_cp_mail').style.color = "#999999";
	}
}

function color_orcamento_servico() {

	if(document.frm.orcamento_servico.value != '1')
	{
		document.getElementById('orcamento_cp_servico').style.color = "#999999";
	}
}


function VerificarTeclas(tecla){
if(tecla > 47 && tecla < 58) {
return true;
}else {
if (tecla != 8 && tecla != 13 && tecla != 37 && tecla != 38 && tecla != 39 && tecla != 40 && tecla != 46) {
return false;
}else {
return true;
}}}


function ValidaEmail()
{ 
  var obj = eval("document.frm.orcamento_mail");
  var txt = obj.value;
  if ((txt.length != 0) && ((txt.indexOf("@") < 1) || (txt.indexOf('.') < 7)))
  {
		document.getElementById('orcamento_cp_mail').style.color = "#FF3300";
		document.frm.orcamento_mail.focus();

	obj.focus();
  }
}