The JS browser detection script is a little out of date, you can remove this code from skin/smart_template/custom/js/ie6/jquery.badBrowser.js
Code:
// Check for Chrome < Version 3.0
var chrome = userAgent.indexOf('chrome');
if (chrome > -1) {
var snip1 = chrome+7;
var version = userAgent.substring(snip1, (snip1+1));
if (version < 3) {
return true;
}
}
// end