<!--
function cn(p)
{
  p.style.cursor        = "default";
  p.style.color         = "#000000";
  p.style.background    = "#ffffff";
  p.style.border        = "1px solid #0000ff";
}

function cs(p)
{
  p.style.cursor        = "hand";
  p.style.color         = "#ffffff";
  p.style.background    = "#599e5e";
  p.style.border        = "1px solid #ff0000";
}

function pop(clip)
{
  var p = "pop.php?clip=" + clip;
  var s = "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=640,height=480";
  var w = window.open(p,"pop",s);
  w.focus();
}

function mailCheck(za,zb)
{
  var a = document.forms[za].elements[zb].value;

  var filter = /^([a-zA-Z0-9_\.\-])+@(([a-zA-Z0-9\-])+\.)+([a-zA-Z])+$/;

  if (a.length > 0 && filter.test(a))
  {
    return true;
  }else{
    alert("Ugyldig epost adresse!");
    return false;
  }
}
//-->
