function outroBanner(){
	ajaxGet("bannerDestaque.php",document.getElementById("bannerDestaque"),false);
}
function exibirEnquete(){
	ajaxGet("enquete_form.php?comhead=sim",document.getElementById("resultadoenquete"),false);
}
function resultadoEnquete(){
	ajaxGet("enquete.php?escolha=resultado",document.getElementById("resultadoenquete"),false);
}
function votarEnquete(){
	var form = document.enquete;
	var msg ="";
    var Radio=null;
    Radio= form.opcao;
	
    for(var i=0;i<Radio.length;i++) {
        if(Radio[i].checked) {
            valorRadioButton = Radio[i].id;
        }
    }
	
	var opcao = valorRadioButton;
	var id_enquete = document.getElementById("id_enquete").value;
	ajaxGet("enquete.php?escolha=votar&opcao="+opcao+"&id_enquete="+id_enquete,document.getElementById("resultadoenquete"),false);
}
function maisProdutos(){
	ajaxGet("maisprodutos.php",document.getElementById("produtosSorteio"),false);
}
function abrirImagemPrincipal(foto, titulo){
	ajaxGet("imagemprincipal.php?foto="+foto+"&titulo="+titulo,document.getElementById("fotoprincipal"),false);
}
function abrirProdutoPrincipal(id){
	ajaxGet("detalheprodutoPrincipal.php?id="+id,document.getElementById("produtoPrincipal"),false);
}
function tocarVideo(video){
	ajaxGet("playervideo.php?video="+video,document.getElementById("mostraVideo"),false);
}
function abrirDETGaleria(tipo,id){
	ajaxGet("galeria.php?tipo="+tipo+"&id="+id,document.getElementById("galeria"),false);
}
function openDetalhes(tipo,id){
	ajaxGet("detalhes.php?tipo="+tipo+"&id="+id,document.getElementById("resultado"),false);
	document.getElementById("resultado").style.display="block";	
	document.getElementById("listaFotos").style.display="none";	
}
function fecharDetalhes(){
	document.getElementById("resultado").style.display="none";	
	document.getElementById("listaFotos").style.display="block";	
}
function Exibircomentario(){
	var divComentario = document.getElementById('comentario').style.display;	
	if(divComentario=="none"){
		document.getElementById('comentario').style.display = "block";
	}else{
		document.getElementById('comentario').style.display = "none";
	}
}
function Resize(){
	if(navigator.appName!="Microsoft Internet Explorer"){
	window.moveTo(0,0);
	window.resizeTo(screen.width-1,screen.height-1);
	window.resizeTo(screen.width,screen.height);
	}
}
function fullWindow(pagina, largura, altura) {
	fullWindow = window.open(pagina,'_blank','status=1,resizable=no,scrollbars=no, width='+largura+', height='+altura+', top=0,left=0');	
}
function votar(){
	document.frm_enquete.action="index.php?pag=enquete&escolha=votar";
	document.frm_enquete.submit();
}

function resultado(){
document.frm_enquete.action="index.php?pag=enquete&escolha=resultado";
document.frm_enquete.submit();
}

function pagNewsletters(){
	
	var nome = document.getElementById('nome').value;
	var email = document.getElementById('email').value;
	
	if (nome=="" || email==""){
		
		alert('Para realizar o cadastro é preciso preencher os dois campos.. Tente Novamente');
		
	}else{
		
		ajaxGet("cadastro.php?nome="+nome+"&email="+email,document.getElementById("resutadoNewsltter"),false);

	}
}
function Clientes(id){
	ajaxGet("clientes_resultado.php?id="+id,document.getElementById("resultadoClientes"),false);
}