var rv = -1; // Return value assumes failure.
  if (navigator.appName == 'Microsoft Internet Explorer')
  {
    var ua = navigator.userAgent;
    var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
    if (re.exec(ua) != null)
      rv = parseFloat( RegExp.$1 );
  }

    var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }  
  
 if((rv <= -1) || (rv >= 7)){
     document.write("<div id=\"loadingWaitDiv\" style=\"background-color:white;color:#636363;font-family: Arial, Helvetica, sans-serif;font-weight:bold;display: block; position: absolute; float:left;top:" + (Math.round(((myHeight) / 2) - (6),0)).toString() + "px;left:" + (Math.round((myWidth / 2) - (320),0)).toString() + "px;\"><img src=\"imagenes/waitForDownload.gif\" alt=\"Descargando...\" style=\"width:32px;height:32px;\"/>&nbsp;&nbsp;&nbsp;Cargando ...</div>");
 }  
 else
 {
     document.write("<div style=\"width:100%;background-color:white;color:#636363;font-family: Arial, Helvetica, sans-serif;font-weight:bold;display: block; position: absolute; float:left;text-align:center;\">Tu navegador necesita ser actualizado a la &uacute;ltima versi&oacute;n de Internet Explorer<br/>para poder navegar en este sitio.</div>");
 }
 ///Acerca de css.js
 ///CSS = Common Startup Script / En este se valida que el Internet Explorer sea mayor o igual a 7 o que no sea internet explorer
 ///tambien se agrega el mensaje de "Cargando..." cuando una pagina invoca a este script.
