﻿    function mostraReposta(v) {

        for(i=1; i <= 15; i++){

            $("#rvocesabia"+i).hide('slow');			

        }

        if($("#rvocesabia"+v).css("display") == "none")

        $("#rvocesabia"+v).show('slow');

    }
	function expandContractLayer(layerId, largMin, largMax, altMin, altMax){
		if(document.getElementById(layerId).style.width != largMin+"px"){
			document.getElementById(layerId).style.width = largMin+"px";
			document.getElementById(layerId).style.height = altMin+"px";
		}else{
			document.getElementById(layerId).style.width = largMax+"px";
			document.getElementById(layerId).style.height = altMax+"px";
		}
	}

	function validaForm(origem){
		if(origem == "form"){
			document.ondecomprar.action = "ondecomprar.php";
		}else{
			document.ondecomprar.action = "index.php";
		}
		document.ondecomprar.submit();
	}
	
	function edx_BuscaOndeComprar(val) {
	    window.location.href ="ondecomprar.aspx?uf="+val;
	    //alert("ondecomprar.aspx?uf="+val);
	}
	function mostraGanhador(obj) {
	    document.getElementById("pnPrimeiro").style.display = "none";
	    document.getElementById("pnSegundo").style.display = "none";
	    document.getElementById("pnTerceiro").style.display = "none";
	    
	    document.getElementById(obj).style.display ="block";
	}
	function esconderGanhador(obj) {
	    document.getElementById(obj).style.display = "none";	
	} 
