
function OldBrowser()
{
var Browser = navigator.appName;
var Version = navigator.appVersion;

if (Browser.search(/Microsoft/i) != -1)
{
 if ( Version.search(/MSIE 6/i) != -1)
   return(true);
 else
   return(false); 
}
else
  return(false);
}