function mhHover(tbl,idx,cls)
{ var t,d;
  if(document.getElementById) t=document.getElementById(tbl);
  else t=document.all(tbl);
  if(t==null) return;
  if(t.getElementsByTagName) d=t.getElementsByTagName("TD");
  else d=t.all.tags("TD");
  if(d==null) return;
  if(d.length<=idx) return;
  d[idx].className=cls;
}

function ImprimirPagina()
{
  if (window.print)
    window.print();
  else
    alert("Lo siento, pero a tu navegador no se le puede ordenar imprimir" +
      " desde la web. Actualízate o hazlo desde los menús");
}

function font_size(increase)
{
  fsize = document.getElementById('articulo').style.fontSize;
  fsize = fsize.slice(0,-2);
  if (fsize == 0) fsize=11;
  if (increase == true)
  {
    fsize++;
  } else
  {
    fsize--;
  }
  if (fsize>24) 
    { fsize=24;}
  if (fsize<10) 
    { fsize=10;}
  document.getElementById('articulo').style.fontSize = fsize+'px';
}

function getRandom(min,max)
{
  return (Math.round(Math.random()*(max-min)))+min;
}

function MostrarNota(sTexto, sId)
{
 document.all[sId].innerHTML= "";
 document.all[sId].innerHTML= sTexto;
 document.all[sId].style.visibility= "";
}

var ie4 = (document.all) ? true : false;
var ns4 = (document.layers) ? true : false;
var ns6 = (document.getElementById && !document.all) ? true : false;

function hidelayer(lay)
{
  if (ie4) {document.all[lay].style.visibility = "hidden";}
  if (ns4) {document.layers[lay].visibility = "hide";}
  if (ns6) {document.getElementById([lay]).style.display = "none";}
}

function showlayer(lay)
{
  if (ie4) {document.all[lay].style.visibility = "visible";}
  if (ns4) {document.layers[lay].visibility = "show";}
  if (ns6) {document.getElementById([lay]).style.display = "block";}
}

function confirmChoice()
{
  question = confirm("Si realmente no aceptas las Condiciones, haz clic en Aceptar.");
  if (question == true)
  {
    location='http://www.magalyteve.com.pe';
  }
}