<!--
// Copyright  2004-2007 Aventin d.o.o.
function SelectMenu(ObjectId)
{
	s = document.getElementById(ObjectId).style;
	s.backgroundColor = '#FFFFCC';
}
function DeselectMenu(ObjectId)
{
	s = document.getElementById(ObjectId).style;
	s.backgroundColor = '#ECFBFF';
}
function CheckHomePage()
{
	if (window.top != window)
	{
		window.top.location = window.location;
	}
}
function InitHomePage()
{
	PageErrorCookie = GetCookie('PageError');
	if (PageErrorCookie != '' && PageErrorCookie != ";")
	{
		document.cookie = "PageError=";
		window.open(PageErrorCookie, 'Content');
	}
}
function Slika(datoteka)
{
	wnd = window.open('', '', 'resizable,width=610,height=450');
	wnd.document.write("<head><title>Croatia</title></head>");
	wnd.document.write("<body style='margin:0px'>");
	wnd.document.write("<table style='width:100%;height:100%'>");
	wnd.document.write("<tr style='text-align:center;vertical-align:middle'><td><img src='");
	wnd.document.write(datoteka);
	wnd.document.write("'></td></tr></table></body>");
	wnd.document.close();
}
function CheckPageAccess()
{
	if (window.top == window)
	{
		document.cookie = "PageError=" + escape(document.URL);
		window.location = 'index.htm';
	}
}
function GetCookie(cookiename)
{
	var cookiestring = "" + document.cookie;
	var index1 = cookiestring.indexOf(cookiename);
	if (index1 == -1 || cookiename == "")
		return ""; 
	var index2 = cookiestring.indexOf(';', index1);
	if (index2 == -1)
		index2 = cookiestring.length; 
	return unescape(cookiestring.substring(index1 + cookiename.length + 1,index2));
}
function PosaljiMail(primalac, poruka)
{
	var adresa = 'mai' + 'lto:' + primalac + '@' + 'mons.hr' + poruka;
	window.open(adresa, '_self');
}
function PopupCenter(url, width, height)
{
	var left = (screen.width - width) / 2;
	var top = (screen.height - height) / 2;
	window.open(url, '_blank', 'fullscreen=no,location=no,left=' + left + ',top=' + top + ',height=' + height + ',width=' + width + ',menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no');
}
// -->
