// Library of commonly used JavaScript functions

	function ChangeTitle()
	{
		var title = document.getElementsByTagName('h1')[0].firstChild.nodeValue;
		if (title != null)
			document.title = "ODISEJ - " + title;
	}

	function ModifyDate()
	{
	    mdate = new Date (document.lastModified);
	    year = mdate.getFullYear();
	    month = mdate.getMonth() + 1;
	    date = mdate.getDate();
	    document.write(date + "." + month + "." + year);
	}

