/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

 function someLayer() {
     var layer = document.getElementById(flash);
     if (layer.style.display == "block") {
          layer.style.display == "none";
     }
}

$(document).ready(function() {
						   





// BUSCAR
$("#buttonBuscaDiv").click(function() {

          if($(':input#q').val() != ''){

			  
			 if($('input:radio[name=locBusca]:checked').val() == "site"){ 
		  document.location.href = "?q="+$(':input#q').val()+"&locBusca="+$(':input#locBusca').val()+"&irPara="+$(':input#irPara').val();
		  }
		  
		  if($('input:radio[name=locBusca]:checked').val() == "web"){ 
			  document.location.href = "http://www.google.com/search?h1=pt-BR&q="+$(':input#q').val();
		  }
		  
		  if($('input:radio[name=locBusca]:checked').val() == "guia"){ 
		  	document.location.href = "http://guia.lagartense.com.br?q="+$(':input#q').val();
		  }
		  
		  
		 }else{
			alert("Digite algo para pesquisar, por favor.");  
		  }
		  
		  
       });
						   
						   
						   });


  function abrirWin(win,w,h){
	
  	var esquerda = (screen.width - w)/2;
  	var topo = (screen.height - h)/2;		
         
	window.open(win,'WIN','height=' + h + ', width=' + w + ', top=' + topo + ', left=' + esquerda+',scrollbars=yes'); 
		
}





