/*
 * Simple Browser Sniffer for checking that the browser is IE 6
 * Sebastian Johnsson
 * version 0.1 2007-04-17
 * This script will be useless when specific version sniffing is implemented in prototype.
 * As of prototype 1.5.1_rc2 this is not yet implemented.
 */
 
 var BrowserSniffer = 
 {
    Browser: 
    {
        IE6:    navigator.userAgent.indexOf('MSIE 6.0') > -1
    }
}