/*_____________________pop-up_*/
function fechadiv(id)
{
	document.getElementById(id).style.display="none";
}

//_______________________________Lista de Compras
function lista()
{
	 window.open('../lista-de-compras.php','lista','width=750,height=530,scrollbars=1,location=no, toolbar=no')
}

//______________________________Lojas
function bh()  {
    if (document.getElementById('BeloHorizonte'))
    {
      document.getElementById("hidden").style.display = "block";
    }
    else
    {
      document.getElementById("hidden").style.display = "none";
    }
  }
function abreMapa(mapa)  {
	path='lojas/mapas/';
	window.open(path+mapa,'Mapa','width=425,height=370');
}
//_______________________________Ofertas

/*function abreOferta()
{
	 window.open('ofertas/','ofertas','scrollbars=1, menubar=1, resizable=1, fullscreen=1')
}

function abreEspecial()
{
	 window.open('ofertas/especial/','ofertas','scrollbars=1, menubar=1, resizable=1, fullscreen=1')
}
*/
function abreOferta(tipo) {

var win="ofertas";
var param="scrollbars=1, menubar=1, resizable=1, fullscreen=1";

		if (tipo=="ofertas")  {
			window.open('ofertas/index.php',win,param)
		}
		if (tipo=="especial")  {
			window.open('ofertas/especial/index.php',win,param)
		}
		if (tipo=="extra")  {
			window.open('ofertas/extra/index.php',win,param)
		}
}
