


function dokumentStart()
{
}



function formularStart()
{
	if(document.getElementsByTagName)
	{
		var input = document.getElementsByTagName('input');
		for(var i = 0; i < input.length; ++i)
		{
			if(input[i] && input[i].type && input[i].type == "text")
			{
				input[i].focus();
				return;
			}
		}
	}
}



function ukazObrazek(src, width, height)
{
	width += 25; height += 25;
  var okno = open("", "_blank", "width="+width+",height="+height+",scrollbars");
  okno.document.open();
  okno.document.writeln('<html>');
  okno.document.writeln('<head>');
  okno.document.writeln('<title>Foto</title>');
  okno.document.writeln('<meta http-equiv="imagetoolbar" content="no" />');
  okno.document.writeln('</head>');
  okno.document.writeln('<body style="margin: 0px; padding: 0px; cursor: pointer;" onclick="window.close();">');
  okno.document.writeln('<img alt="" src="'+src+'" />');
  okno.document.writeln('</body>');
  okno.document.writeln('</html>');
  okno.document.close();
  return false;
}



function nastavHodnotu(id, v)
{
 if(document.getElementById)
 {
  var obj = document.getElementById(id);
  if(obj)
  {
   obj.value = v;
  }
 }
}



function ziskejHodnotu(id)
{
 if(document.getElementById)
 {
  var obj = document.getElementById(id);
  if(obj)
  {
  	var v = obj.value;
  	var f = parseFloat(v.replace(/,/,'.'));
		if(f != 0)
  	{
  		v = f;
		}
		return v;
  }
 }
 return false;
}



