/**
 * @author  : Aleksandr Mielniczuk
 * @version : $Revision: 1.2 $, $Date: 2007/08/23 08:56:26 $
 *
 * Copyright C by MatriX.PL, 2000-2004. All rights reserved.
 *
 * ============================================================================
 *
 * This software is the confidential and proprietary information  of MatriX.PL,
 * SA ( "Confidential Information" ). Yuo shall not disclose such  Confidential
 * Information and shall use it only in accordance with the terms of the license
 * agreenment  you entered into with MatriX.PL, SA
 *
 * ============================================================================
 *
 */

function jsCheckBrowser( value, iswelcome )
{
    if ( browser.nav7up || browser.gecko || browser.ie55up || browser.opera7up ) {
        if ( iswelcome ) {
            location = value + "home:edit.do?history=reset";
        }
    } else {
        location = value + "browser.do";
    }
}

