<!--
// Hide e-mail to Search Engines - written by Hiryu

function writemail(wm_user,wm_domain,wm_style,wm_alttext,wm_subject) {
  if (wm_subject != '') {
    if (wm_subject.charAt(0) != '?') {
      wm_subject = '?' + wm_subject
    }
  }

  wm_email = wm_user + '@' + wm_domain

  if (wm_alttext == '') {
    wm_alttext = wm_email
  }

  document.write('<a class="' + wm_style + '" href="mailto:' + wm_email + wm_subject + '">' + wm_alttext + '</a>')
}
//-->