//http://www.willmaster.com/blog/javascript/spamming-with-forms.html
// the script below prevents comment-script link spammers
function setform(formname) {
    // http://mkweb.bcgsc.ca/emailencode/
    // var url = "/cgi-bin"+"/\x46\x6f\x72\x6d\x4d\x61"+String.fromCharCode(105)+"\x6c\x2e"+String.fromCharCode(112)+"\x6c" ;
    var url = "/cgi-bin"+"/\x46"+String.fromCharCode(77)+String.fromCharCode(46)+"\x70\x6c" ;
    var s = 'document.' + formname + '.action = "' + url + '";';
    var t = "eval('"+s+"')" ;
    setTimeout(t,500) ;
}    
    
