// JavaScript Document
function changeText(val,lan)
{
	retrieveURL("ajax/news.php?key="+val+"&lan="+lan);
}

function showNews(val,lan,tip)
{
	var location = "index.php?tpl=shownews&id="+val+"&lan="+lan+"&type="+tip;
	window.location.href = location;
}

function showNews_p(val,lan)
{
	var location_ = "index.php?tpl=news_trnc&id="+val+"&lan="+lan;
	window.location.href = location_;
}

function showMenu(val,lan)
{
	retrieveURL("ajax/menu.php?men="+val+"&lan="+lan);
}

function switch_lang(temp_lang)
{
	document.getElementById("input_lang").value=temp_lang;
	document.getElementById("lang_form").submit();
	LoadMenus();
}