function showPredstafvaInfo(id)
{
	var url = "AJAX/get_osoba_info.php?id="+id;
	// notice the use of a proxy to circumvent the Same Origin Policy.

	new Ajax.Request(url, {
		method: 'get',
		onSuccess: function(transport) 
		{
			$("predstava_content").innerHTML = transport.responseText;
			//$("predstava_info").style.backgroundColor = color;
			Effect.Appear("supstrat1", { duration: 0.7 });
			Effect.Appear("predstava_info", { duration: 0.7 });
		}
	});
}

function closeInfo()
{
	Effect.Fade("supstrat1", { duration: 0.7 });
	Effect.Fade("predstava_info", { duration: 0.7 });
}

function showPredstafvaInfoEng(id)
{
	var url = "AJAX/get_osoba_info_eng.php?id="+id;
	// notice the use of a proxy to circumvent the Same Origin Policy.

	new Ajax.Request(url, {
		method: 'get',
		onSuccess: function(transport) 
		{
			$("predstava_content").innerHTML = transport.responseText;
			//$("predstava_info").style.backgroundColor = color;
			Effect.Appear("supstrat1", { duration: 0.7 });
			Effect.Appear("predstava_info", { duration: 0.7 });
		}
	});
}