function otevri(cesta,w,h){

	var levy = (screen.width - w)/2;
	var horni = (screen.height - h)/2;

      
	fotookno=window.open("","img","all=no, resizable=yes, width="+w+",  height="+h+",left="+levy+",top="+horni+"");
	with (fotookno.document)
	{	open();
		writeln('<html><title>SK Pegas Sedlčany</title><body leftmargin="0" topmargin="0">');
		writeln('<img src="'+cesta+'" border="0" alt="Kliknutím na obrázek okno zavřete" width="'+w+'" height="'+h+'" onclick="self.close();" style="cursor: hand;">');
		writeln('</body></html>');
		close();
	}
	fotookno.focus();
}

function fotoshow(cesta,w,h){
   var posuv="no";
   var orient=0;
   if(w>screen.width) {posuv="yes";};
   if(h>screen.height) {posuv="yes";orient=1; w=w+100;};
         
   var levy = (screen.width - w)/2;
   var horni = (screen.height - h)/2;

      
   fotookno=window.open(cesta+"&orient="+orient,"img","all=no, resizable=yes, scrollbars="+posuv+", width="+w+",  height="+h+",left="+levy+",top="+horni+"");
   fotookno.focus();

}

function getElement(e)
{
   if(document.all) return document.all[e];
   else return document.getElementById(e);
}

function InsertFileInput()
{
   getElement("File_Loading").innerHTML += "<br><input type='file' name='fileload[]' size='50'>";
}

function CreateDir(cesta)
{
  jmeno = window.prompt('Zadejte jméno adresáře','');
  if (jmeno!=null)
  {
    location.href="admin-soubory.php?folder="+cesta+"&order=createdir&dir="+jmeno;
  }
}

