/* $Id$
 * 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;

