function rand_BG(xFondo) {
  //xFondo Valores posibles 0, 1 y 2 ; 0 random de 1 - 10 ; 1 random de 1 - 6 ; 2 random de 7 - 10
  var a;
  var varFondo;
  switch(xFondo){
    case 0:  a = 1*Math.round(Math.random()* 10);
                         break;
    case 1:  a = 1*Math.round(Math.random()* 6);
                         break;
    case 2:  a = 1*Math.floor(Math.random()* 4)
             if (a == 0){ //validación adicional en caso de cargar el número 0
                             a++;
                         }
                       a = a + 6;
                         break;
    default: a = 1*Math.round(Math.random()* 10);
                         break;
  }

  switch (a){
   case 1:  varFondo = "bilddaten/hgr_fotos/hgr_02_2.jpg";
                  break;
   case 2:  varFondo = "bilddaten/hgr_fotos/hgr_03.jpg";
                 break;
   case 3:  varFondo = "bilddaten/hgr_fotos/hgr_04.jpg";
                 break;
   case 4:  varFondo = "bilddaten/hgr_fotos/hgr_05.jpg";
                  break;
   case 5:  varFondo = "bilddaten/hgr_fotos/hgr_06.jpg";
                break;
   case 6:  varFondo = "bilddaten/hgr_fotos/hgr_07.jpg";
                break;
   case 7:  varFondo = "bilddaten/hgr_fotos/hgr_08.jpg";
                  break;
   case 8:  varFondo = "bilddaten/hgr_fotos/hgr_09.jpg";
                break;
   case 9:  varFondo = "bilddaten/hgr_fotos/hgr_10.jpg";
                  break;
   case 10: varFondo = "bilddaten/hgr_fotos/hgr_06.jpg";
                break;
   case 11: varFondo = "bilddaten/hgr_fotos/hgr_06.jpg";
                break;
   default: varFondo = "bilddaten/hgr_fotos/hgr_06.jpg";
                  break;
  }
  document.body.background = varFondo;
}

function galeriasPop (xURL) {
  popVentana = window.open(xURL,"coconut","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=589,height=470,top='top',left='center'");
  popVentana.focus();
}

function customPop(xURL, varWidth, varHeight) {
  popVentana = window.open(xURL,"coconut","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars,resizable=no,width="+varWidth+",height="+varHeight+",top='top',left='center'");
  popVentana.focus();
}

function cargarGaleria (parFoto, ParTitulo){
  frames['foto'].location.href= parFoto;
  frames['title'].location.href= ParTitulo;
}

function LimpiarFondo(varPosicion, varLocation){
 var thestyle = eval ('document.all.enl_'+varLocation+'.style');
  if (varPosicion !=varLocation){
    thestyle.color="#848484";
    thestyle.backgroundColor="#FFFFFF";
  } else {
   thestyle.color="#FFFFFF";
   thestyle.backgroundColor="#933f00";
  }
}
