function validacont(cont){
	if(cont.nome.value ==""){
      alert("Por favor digite seu Nome!");
      cont.nome.focus();
      return false;
	} 
	
	
	if ((cont.email.value.indexOf("@")<0) && (cont.email.value.indexOf(".")<0)){
	alert("Por favor, preencha corretamente o campo E-mail!")
	cont.email.focus()
	return (false);
	}
	
	if(cont.ddd.value ==""){
      alert("Por favor digite o DDD do Telefone!");
      cont.ddd.focus();
      return false;
	} 
	
	if(cont.telefone.value ==""){
      alert("Por favor digite seu Telefone!");
      cont.telefone.focus();
      return false;
	} 
   return true;
}




//-----------------função menu popup---------------------


function init(){

	document.getElementById("sac").onmouseover = function(){document.getElementById("sub_sac").style.display='block';};
	
	document.getElementById("sac").onmouseout = function(){document.getElementById("sub_sac").style.display='none';};
	
	document.getElementById("sub_sac").onmouseout = function(){document.getElementById("sub_sac").style.display='none';};
	
	document.getElementById("sub_sac").onmouseover = function(){document.getElementById("sub_sac").style.display='block';};

}

	window.onload=init

 

//----------função mostra/esconde texto--------------------

 
function showSub(lugar,obj){

    base = document.getElementById(lugar).getElementsByTagName("ul")

    for(i=0;i<base.length;i++){

    base[i].style.display="none";

}


   document.getElementById(obj).style.display = "block";



}

//-----------------função janela popup---------------------

function abre(url,janela,larg,alt,scroll,pos1,pos2){

 window.open(url,janela,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scroll+',resizable=no,copyhistory=no,top='+pos1+',left='+pos2+',screenY='+pos1+',screenX='+pos2+',width='+larg+',height='+alt);

}


//---------box imagens home--------------------------



function mostraImg(imgIndex){

		

		limiteInicial = 1

		limiteFinal = 3

		

		elImg = document.getElementById('foto');

		elImg.src = 'imgs/anuncios/'+imgIndex+'.jpg';

		// escrever primeiro nome no html

		arrLegenda = Array(null,"MG 902SCL/436 1","MG 902SCL/436 2","MG 902SCL/436 3")

		

		elLegenda = document.getElementById('legenda');

		elLegenda.innerHTML = arrLegenda[imgIndex];

		

		elAnterior = document.getElementById('anterior');

		

		if (limiteInicial == imgIndex){

			elAnterior.href =  'javascript:mostraImg('+limiteFinal+')';

		} else {

			elAnterior.href = 'javascript:mostraImg('+(imgIndex - 1)+')';

		}

		

		elProximo = document.getElementById('proximo');

		

		

		if (limiteFinal == imgIndex){	

			elProximo.href = 'javascript:mostraImg('+limiteInicial+')';

		} else {

			elProximo.href = 'javascript:mostraImg('+(imgIndex + 1)+')';

		}

	}
