
<!--
	
function currentday()
	{
	
	RightNow = new Date();
	
	if (RightNow.getDay() =="1")
	{document.write("Ponedjeljak")}
	
	else
	
	if (RightNow.getDay() =="2")
	{document.write("Utorak")}
	
	else

	if (RightNow.getDay() =="3")
	{document.write("Srijeda")}

	else
	
	if (RightNow.getDay() =="4")
	{document.write("Cetvrtak")}
	
	else

	if (RightNow.getDay() =="5")
	{document.write("Petak")}


	else
	
	if (RightNow.getDay() =="6")
	{document.write("Subota")}
	
	else

	if (RightNow.getDay() =="0")
	{document.write("Nedjelja")}

	}
// -->	

<!--
function currenttime()
	{
	
	RightNow = new Date();
	
	if (RightNow.getMinutes() < 10)
	
	{document.write(RightNow.getHours() + ":0" + RightNow.getMinutes())}
	
	else

	document.write(RightNow.getHours() + ":" + RightNow.getMinutes())

	}
// -->

<!-- kontrola upisa //
