<!-- desplegable
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
<!--
function validarFechas(fecha1, fecha2) {
    var resultado = true;
    var dateformat = /^\d{1,2}(\-|\/|\.)\d{1,2}\1\d{4}$/
    if (fecha1.value != "")
    {
        resultado =  dateformat.test(fecha1.value);
        if (!resultado) {
            alert ("formato de fecha 'desde' incorrecto (dd/mm/aaaa).");
            return false;
        }
    }
    if (fecha2.value != "")
    {
        resultado =  dateformat.test(fecha2.value);        
    }
    if (!resultado)
        alert ("formato de fecha 'hasta' incorrecto (dd/mm/aaaa).");
    return resultado;
}

function Resize(w,h) {
    self.resizeTo(w,h);
}

//-->


