// ZSite CMS
// JavaScript runtime
// localization support functions
// (c) Zagorodnikov Anton 2007

function ZLOCALE(text)
{
    if(zsite_locale_debug)
    {
//	if((zsite_lstrings[text] == "")&&(zsite_lstrings[text] == "undefined"))
	if(!zsite_lstrings[text])
	{
	    return "ENG:"+text;
	}
	else
	{
	    return zsite_lstrings[text];
	}
    }
    
    if(!zsite_lstrings[text])
    {
        return "ENG:"+text;
    }
    else
    {
        return zsite_lstrings[text];
    }
}

