function checkIE6()
{
    //alert(navigator.appVersion);
    var version = navigator.appVersion;
    if(version.match('MSIE 6.0')== null)
    {
        return false;
    }
    else
    {
        return true;
    }
}