// JavaScript Document

//Detectando si es IE6
/*var is_ie6 = (window.external && typeof window.XMLHttpRequest == "undefined");  
if (is_ie6 ){
	location.href="browser.html";
}
*/

function getInternetExplorerVersion()
// Returns the version of Windows Internet Explorer or a -1
// (indicating the use of another browser).
{
   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 );
   }
   return rv;
}


var tmp = getInternetExplorerVersion();
if((tmp!=-1)&&(tmp<=6)){
	location.href=urlServidor + "browser.htm";
}
