/* $Id: IE6Checking.js,v af81285c5ac8 2010/02/22 14:14:53 usm $
 * Copyright (c) 2003, 2007 WorldTicket A/S
 * All rights reserved.
 */

/**
 * @author  Kateryna Lypynets / 2M business applications a|s
 */

function ie6Checking() {

    if (window.navigator.userAgent.indexOf ("MSIE") >= 0) {
        uaVers=window.navigator.userAgent.substr(window.navigator.userAgent.indexOf("MSIE")+5,3);
        if (uaVers == 6.0) alert(ie6_checking);
    }
}

var ie6_checking;
