// Web AntiSpam JS(TM) version 20050717a // Copyright (c) 2005- IIJIMA Hiromitsu aka Delmonta, the Chairman of DGG. // This program is Free under GNU Lesser General Public License. var signatureLoadTime = new Date; function email(address) { var t = new Date; // 読み込みから 300ms 以内の場合はロボットとみなす if (t.getTime() < signatureLoadTime.getTime() + 300) { alert("Spam? Es ist nicht in Ordnung."); return; } location.href = "mailto:" + address.join(''); }