// JavaScript Document
function toEntity() {
  var aa = document.form.utf.value;
  var bb = '';
  for(i=0; i<aa.length; i++)
  {
    if(aa.charCodeAt(i)>127)
    {
      bb += '&#' + aa.charCodeAt(i) + ';';
    }
    else
    {
      bb += aa.charAt(i);
    }
  }
  document.form.entity.value = bb;
}

function hodiny(s)
{
dnes=new Date();

hodin=dnes.getHours();
minut=dnes.getMinutes();
sekund=dnes.getSeconds();

cas=((hodin<10) ? "0" : "")+hodin;
cas+=((minut<10) ? ":0" : ":")+minut;
if(s == 1){ cas+=((sekund<10) ? ":0" : ":")+sekund; }

document.getElementById('hodinky').innerHTML=cas;
setTimeout("hodiny()",1000);
}

function open_page(page,category)
{
window.open("index.php?"+category+"="+page,"_self");	
}

function open_subpage(page,subpage)
{
window.open("index.php?page="+page+"&sub="+subpage,"_self");	
}

function on_out(image,on)
{
if(on=='on') { document.getElementById('btn_'+image).style.backgroundImage='style/menu_buttons/'+image+'_o.png' }
else { document.getElementById('btn_'+image).style.backgroundImage='style/menu_buttons/'+image+'.png' }
}

function openpic(picture,title)
	{
	var okno = window.open("","picture","width=800 height=600 left=50 top=100");
	okno.document.write("<html><head><title>"+title+"</title></head><body onclick='window.close()' style='background-image:url("+picture+");background-repeat:no-repeat'>&nbsp;</body></html>");
	}
	
	
