function getkey(e)
{ 
  var code; 
  if (!e)
    var e = window.event; // nastaveni pro IE 
  if (e.keyCode)
    code = e.keyCode; // ie and mozilla/gecko 
  else
   if (e.which)
     code = e.which; // nn4
  return code; 
} 

function cislo(eX)
{
  test=getkey(eX);
  if (test<48 || test>57)
    return false;
}
function telefon(eX)
{
  test=getkey(eX);
  if (test!=43 && test<48 || test>57)
    return false;
}

function mail(eX)
{
  test=getkey(eX);
  if (test<45 || test>122)
    return false;
}

function nocz(eX)
{
  test=getkey(eX);
  if (test>133)
    return false;
}
