<!-- -->
<!-- MAXIMIZAR LA VENTANA ACTUAL NADA MAS ABRIRLA -->
<!-- -->
function maximizar_ventana()
{
  window.moveTo(0,0);
  if (document.all)
  {
	top.window.resizeTo(screen.availWidth,screen.availHeight);
  }
  else
	if (document.layers||document.getElementById)
	{
	  if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth)
	  {
	    top.window.outerHeight = screen.availHeight;
	    top.window.outerWidth = screen.availWidth;
	  }
	}
}

<!-- -->
<!-- FUNCIONES NECESARIAS PARA CAMBIAR DE COLOR LAS CELDAS DE UNA TABLA -->
<!-- El cambio de colores solo se produce en IE -->
<!-- -->
function mOvr(src, backgound, color) {

  if (!src.contains(event.fromElement)) {
//	 src.style.cursor = 'hand';
//	 src.bgColor = clrOver;
//	}

    src.bgColor=backgound;
    src.style.color=color;
    src.style.cursor = 'hand';
  }
}

function mOut(src, backgound, color) {

  if (!src.contains(event.toElement)) {
//	 src.style.cursor = 'default';
//	 src.bgColor = clrIn;
//	}
    src.bgColor= backgound;
    src.style.color=color;
    src.style.cursor = 'default';
  }
}

function mDwn(pagina, estado, frame) {

pagina = pagina + parent.parent.idioma_actual + '.html';

//alert('INICIO DE mDwn ' + flash_estado_actual);
//parent.parent.flash_estado_actual = parent.parent._home.home_fl.GetVariable("estado");
//alert('FLASH ESTADO ACTUAL ' + parent.parent.flash_estado_actual);

//alert('ME VOY A ..');

if (parent.parent.flash_plugin == true) // FLASH
  {
  //  alert('DENTRO DEL primer IF ' + flash_estado_actual);
  parent.parent.flash_estado_actual = estado;
  //  alert('DENTRO DEL primer IF ' + parent.parent.flash_estado_actual);
  parent._home.document.location = pagina;
  }
else //SIN FLASH pero en IE o NS
  {
  //  alert('DENTRO DEL ELSE ' + js_estado_actual);
  parent.parent.js_estado_actual = estado;
  //alert(pagina);
  parent.frames[frame].location=pagina;
  }
}


function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}