function editor(id,type)
{
	var height = 510;
	if (type=="db") height = 660;
  var editor=window.open('','okno','width=570,height='+height+',resizble=0,menubar=0,toolbar=0,left=10,top=30,directories=0,location=0,scrollbars=0,copyhistory=0,status=0');
  editor.document.open();
  editor.document.writeln('<html><head><title>Načítám...</title></head><body bgcolor="black" topmargin="0" leftmargin="0">');
  editor.document.writeln('<script '+'type="text/'+'javascript">location.href=\"editor_'+type+'.php?c='+id+'&load=load\"<'+'/script>');
  editor.document.writeln('</body></html>');
  editor.document.close();
}
function nova_akt()
{
 var editor=window.open('','okno','width=570,height=660,resizble=0,menubar=0,toolbar=0,left=10,top=30,directories=0,location=0,scrollbars=0,copyhistory=0,status=0');
 editor.document.open();
 editor.document.writeln('<html><head><title>Načítám...</title></head><body bgcolor="black" topmargin="0" leftmargin="0">');
  editor.document.writeln('<script '+'type="text/'+'javascript">location.href=\"admin/nova_aktualita.php\"<'+'/script>');
  editor.document.writeln('</body></html>');
  editor.document.close();
}

function popUp(URL)
{
  day = new Date();
  id = day.getTime();
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=440,height=600,left = 150,top = 150');");
}
function show(element)
{
 if (document.getElementById(element).style.display == 'inline')
 {
  document.getElementById(element).style.display = 'none';
 }
 else
 {
  document.getElementById(element).style.display = 'inline';
 }
}



