
function abreViniCaja() {
	atributos = 'scrollbars=no,toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=no,width=486,height=347,top=200,left=50';
	ventana=window.open('https://ecom.vinea.es/webapp/ViniWeb/previo.jsp?codWeb=006','VININEW',atributos);
	ventana.focus();
}


function mover() 
{ 
if (screen.width==1024)

navBar.style.top = document.body.scrollTop+73; 
} 


function vermenu(actual){
actual++;
for (i=1;i < 5;i++){
if (document.getElementById("ver"+i))
	document.getElementById("ver"+i).style.display= 'none';
}
if (document.getElementById("ver"+actual))
	document.getElementById("ver"+actual).style.display= 'block';
else
	document.getElementById("ver1").style.display= 'block';	
}



function capasarticulo(objname){

if (document.getElementById('ventajas')){
	document.getElementById('ventajas').style.display= 'none';
}
if (document.getElementById('descripcion'))
	document.getElementById('descripcion').style.display= 'none';

if (document.getElementById('condiciones'))
	document.getElementById('condiciones').style.display= 'none';

for (i=0;i<250;i++){
	if (document.getElementById(i))
	document.getElementById(i).style.display= 'none';

}

document.getElementById(objname).style.display= 'block';
/*if ((objname=='descripcion') && (document.getElementById('consulta')))
	document.getElementById('consulta').style.display= 'block';*/
}













function cambiapestanas(objname){
if (document.getElementById("tdventajas"))
if (document.getElementById("tdventajas").className=='apartados'){
document.getElementById("tdventajas").className='apartadosoff';
document.getElementById("tdventajas"+"esq").className='apartadosoffesquina';
}
if (document.getElementById("tddescripcion"))
if (document.getElementById("tddescripcion").className=='apartados'){
document.getElementById("tddescripcion").className='apartadosoff';
document.getElementById("tddescripcion"+"esq").className='apartadosoffesquina';
}
if (document.getElementById("tdcondiciones"))
if (document.getElementById("tdcondiciones").className=='apartados'){
document.getElementById("tdcondiciones").className='apartadosoff';
document.getElementById("tdcondiciones"+"esq").className='apartadosoffesquina';
}
document.getElementById(objname).className='apartados';
document.getElementById(objname+"esq").className='apartadosesquina';

}

function PNG_loader() {
  for(var i=0; i<document.images.length; i++) {
    var img = document.images[i];
    var imgName = img.src.toUpperCase();
    if (imgName.substring(imgName.length-3, imgName.length) == "PNG") {
      var imgID = (img.id) ? "id='" + img.id + "' " : "";
      var imgClass = (img.className) ? "class='" + img.className + "' " : "";
      var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' ";
      var imgStyle = "display:inline-block;" + img.style.cssText;
      if (img.align == "left") imgStyle += "float:left;";
      if (img.align == "right") imgStyle += "float:right;";
      if (img.parentElement.href) imgStyle += "cursor:hand;";
      var strNewHTML = "<span " + imgID + imgClass + imgTitle
         + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
         + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
         + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>";
      img.outerHTML = strNewHTML;
      i--;
    }
  }
}