var carka = /,/g;
function prepocitatkw() {
  document.getElementById('formular').vykon_kw.value = document.getElementById('formular').vykon_kw.value.replace(carka, '.');
  document.getElementById('formular').vykon_hp.value = (Math.round(document.getElementById('formular').vykon_kw.value * 13.41) / 10);
}

function prepocitathp() {
  document.getElementById('formular').vykon_hp.value = document.getElementById('formular').vykon_hp.value.replace(carka, '.');
  document.getElementById('formular').vykon_kw.value = (Math.round(document.getElementById('formular').vykon_hp.value * 7.457) / 10);
}

function open_new_window(cesta, sirka, vyska) {
  sirka = sirka-(-15);
  vyska = vyska-(-15);
  newwindow2 = window.open('','','width='+sirka+',height='+vyska+',top=100,left=100');
  var tmp = newwindow2.document;
  tmp.write('<html><head><title>Fotografie</title>');
  tmp.write('<link rel="stylesheet" href="js.css">');
  tmp.write('</head><body onclick="self.close()">');
  tmp.write('<img src="'+cesta+'">');
  tmp.write('</body></html>');
  tmp.close();
}

function kolik_zobrazit(cislo) {
  alert(cislo);	
}