﻿/* menijska vrstica*/
function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility="visible";
}
function hidemenu(elmnt)
{
document.getElementById(elmnt).style.visibility="hidden";
}

/*natisni stran*/
function printpage()
{
window.print();
}
/*utripajoč naslov*/
function blinking_header()
{
if (!document.getElementById('blink').style.color)
	{
	document.getElementById('blink').style.color="red";
	}
if (document.getElementById('blink').style.color=="red")
	{
	document.getElementById('blink').style.color="navy";
	}
else
	{
	document.getElementById('blink').style.color="red";
	}
timer=setTimeout("blinking_header()",350);
}
function stoptimer()
{
clearTimeout(timer);
}

function moveover()
{
document.getElementById('image').src="bulbon.gif";
document.getElementById('image').width="100";
document.getElementById('image').height="180";
}
function moveback()
{
document.getElementById('image').src="landscape.jpg";
document.getElementById('image').width="160";
document.getElementById('image').height="120";
}
