if (window!= top)
	top.location.href=location.href

function just1fix()
	{
		for (a in document.links)
		document.links [a].onfocus = document.links[a].blur;
	}
		if (document.all)
	{
		document.onmousedown = just1fix;
	}

function slikulja(slikuljaurl)
	{
		var HTML = "<html><head><title>Wille Informatik</title><style type='text/css'>body {margin:0px; border:0px;}</style><meta http-equiv='imagetoolbar' content='false'><meta http-equiv='imagetoolbar' content='no'></head><body onblur='top.close()'><img src='"+ slikuljaurl +"' border=0 name=slikuljina onLoad='window.resizeTo(document.slikuljina.width,document.slikuljina.height)'></body></html>";
		popupImage = window.open('','_blank','toolbar=no,scrollbars=no');
		popupImage.document.open();
		popupImage.document.write(HTML);
		popupImage.document.close();
	}

function toggle(targetId)
	{
		if (document.getElementById)
		{
			target = document.getElementById(targetId);
			if (target.style.display == "none")
			{
				target.style.display = "";
				}
				else {target.style.display = "none";
				}}}
