﻿// JScript File

function GetLang()
{

    //localHost = 'localhost';
    hebHost = 'www.bandana.co.il';
    engHost = 'www.bandana-int.com';
    
    CurrentHost = window.location.host;
    
    if (CurrentHost == hebHost)
    {
        return 'he';
    }
    else if(CurrentHost == engHost)
    {
        return 'en';
    }
    else
    {
        return 'he';
    }
}



