/********************************* AJAX - ZAKLAD ******************************/
function vytvorXMLHttpRequest2(handler) {
  if (window.XMLHttpRequest) {
    xmlHttp = new XMLHttpRequest();
  } else if (window.ActiveXObject) {
    try {
      xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (error) {
      xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
  return xmlHttp;
}
/****************************** KONEC AJAX - ZAKLAD ***************************/
function del_this_value(elm, typ) {
  if (typ == 'jmeno') {
    if (elm.value == 'Jméno') {
      elm.value = '';
    }
  }
  if (typ == 'heslo') {
    if (elm.value == 'Heslo') {
      elm.value = '';
    }
  }
}

