// JavaScript Document
function CambiarPagina(campo,valor)
{
if (valor!=-1)
 {
  if (campo=='ultimas')
   {
    location.href='http://www.mundidrinks.com/02-vinos.php?tipo='+valor;
   }
  if (campo=='precio')
   {
    location.href='http://www.mundidrinks.com/02-precios.php?id='+valor;
   }
  if (campo=='pais')
   {
    location.href='http://www.mundidrinks.com/02-pais.php?id='+valor;
   }
  if (campo=='deno')
   {
    location.href='http://www.mundidrinks.com/02-do.php?id='+valor;
   }
  if (campo=='tipo')
   {
    location.href='http://www.mundidrinks.com/02-tipo_cat.php?id='+valor;
   }
  if (campo=='bodega')
   {
    location.href='http://www.mundidrinks.com/02-bodegas.php?id='+valor;
   }
  if (campo=='etiqueta')
   {
    location.href='http://www.mundidrinks.com/02-etiquetas.php?id='+valor;
   }
  }
}
function AbrirImagen(url_imagen){
 	var img = new Image();
 	img.src = url_imagen;
	win=window.open('','','width='+img.width+',height='+(img.height+60)+',scrollbars=no,resizable=1,toolbar=0');
	win.document.write ('<html>\n');
	win.document.write (' <head>\n');
	win.document.write (' <title>Imagenes</title>\n');
	win.document.write (' </head>\n');
	win.document.write (' <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n');
	win.document.write (' <img src="' + url_imagen + '" height='+img.height+' width='+img.width+'>\n');
	win.document.write (' <br>\n');
	win.document.write (' <p align="center"><a href="#" onClick="window.close();">Cerrar</a> </p>\n');
	win.document.write (' </body>\n');
	win.document.write (' </html>\n');	
}

function AbrirImagenimg(imagen){
 	var img = new Image();
 	img = imagen;
	win=window.open('','','width='+img.width+',height='+(img.height+60)+',scrollbars=no,resizable=1,toolbar=0');
	win.document.write ('<html>\n');
	win.document.write (' <head>\n');
	win.document.write (' <title>Imagenes</title>\n');
	win.document.write (' </head>\n');
	win.document.write (' <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n');
	win.document.write (' <img src="' + img.src + '" height='+img.height+' width='+img.width+'>\n');
	win.document.write (' <br>\n');
	win.document.write (' <p align="center"><a href="#" onClick="window.close();">Cerrar</a> </p>\n');
	win.document.write (' </body>\n');
	win.document.write (' </html>\n');	
}
