// JavaScript Document
function cuz_name () {
  if (document.uz_form.uz_name.value == "név") {
    document.uz_form.uz_name.value="";
  }
}
function suz_name () {
  if (document.uz_form.uz_name.value == "") {
    document.uz_form.uz_name.value="név";
  }
}
function cuz_email () {
  if (document.uz_form.uz_email.value == "e-mail cím") {
    document.uz_form.uz_email.value="";
  }
}
function suz_email () {
  if (document.uz_form.uz_email.value == "") {
    document.uz_form.uz_email.value="e-mail cím";
  }
}
function cuz_phone () {
  if (document.uz_form.uz_phone.value == "telefonszám") {
    document.uz_form.uz_phone.value="";
  }
}
function suz_phone () {
  if (document.uz_form.uz_phone.value == "") {
    document.uz_form.uz_phone.value="telefonszám";
  }
}
function cuz_targy () {
  if (document.uz_form.uz_targy.value == "üzenet tárgya") {
    document.uz_form.uz_targy.value="";
  }
}
function suz_targy () {
  if (document.uz_form.uz_targy.value == "") {
    document.uz_form.uz_targy.value="üzenet tárgya";
  }
}
function cuz_uzenet () {
  if (document.uz_form.uz_uzenet.value == "üzenet szövege") {
    document.uz_form.uz_uzenet.value="";
  }
}
function suz_uzenet () {
  if (document.uz_form.uz_uzenet.value == "") {
    document.uz_form.uz_uzenet.value="üzenet szövege";
  }
}

function clogin () {
  if (document.belepesform.li_login.value == "fehasználónév") {
    document.belepesform.li_login.value="";
  }
}
function slogin () {
  if (document.belepesform.li_login.value == "") {
    document.belepesform.li_login.value="fehasználónév";
  }
}
function cpassword () {
  if (document.belepesform.li_password.value == "jelszó") {
    document.belepesform.li_password.value="";
  }
}
function spassword () {
  if (document.belepesform.li_password.value == "") {
    document.belepesform.li_password.value="jelszó";
  }
}
function cname () {
  if (document.hirlevelform.nl_su_name.value == "név") {
    document.hirlevelform.nl_su_name.value="";
  }
}
function sname () {
  if (document.hirlevelform.nl_su_name.value == "") {
    document.hirlevelform.nl_su_name.value="név";
  }
}
function cemail () {
  if (document.hirlevelform.nl_su_email.value == "e-mail cím") {
    document.hirlevelform.nl_su_email.value="";
  }
}
function semail () {
  if (document.hirlevelform.nl_su_email.value == "") {
    document.hirlevelform.nl_su_email.value="e-mail cím";
  }
}
