    <!--
    function abreVentana(w)
    {
        x=window.open(w,'PopUp','width=500px,height=600px,resizable=no,scrollbars=yes');
        x.focus();
    }
    function abreVentana2(w,ancho,alto)
    {
        x=window.open(w,'PopUp','width=' + ancho + 'px,height=' + alto + 'px,resizable=no,scrollbars=yes');
        x.focus();
    }
    function mostrar(id)
    {
        obj=document.getElementById(id);
        if ( obj!=null )
        {
            if (obj.style.display == 'none')
                obj.style.display = 'block';
            else
                obj.style.display = 'none';
        }
    }
    function addOnLoad(nuevoOnLoad) 
    {   
        var prevOnload = window.onload;   
        if (typeof window.onload != 'function') 
        {      
            window.onload = nuevoOnLoad;   
        }   
            else 
        {      
            window.onload = function() 
            {          
                prevOnload();          
                nuevoOnLoad();      
            }   
        }
    }
    
    function show(id) {
        var d = document.getElementById(id);
        for (var i = 1; i<=10; i++)
        {
            if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
        }
        if (d) {d.style.display='block';}
    }
    
    function detectarResolucion()
    {          
        var ancho=window.screen.width;
        var hoja='normal';

        if (ancho<=1024)
            hoja='reducido';

        seleccionaHojaEstilo(hoja);
    }  

    function seleccionaHojaEstilo(title) {      var i, a, main;      for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {        if(a.getAttribute("rel").indexOf("style") != -1) {          a.disabled = true;          if(a.getAttribute("title")!=null)          {            if(a.getAttribute("title") == title) a.disabled = false;          }        }      }    }    function AbreEncuesta()
    {
      s="http://www.skill.es/encuesta/default.asp";
      window.open(s,"Encuesta","top=10,left=10,width=800,height=600, scrollbars=1,toolbar=0,location=0, directories=0, status=0, menubar=0,resizable=1");
    }

    
    //-->

