function send_email(name,URL,thisform) {
subjectheading = "Email Contact from OBKA Website";
theE = name+'@'+URL+'?subject=' + subjectheading;
thisform.action = "mailto:"+theE;
}


function write_email(name,URL) {
URL = URL.replace("(dot)",".");URL = URL.replace("(dot)",".");URL = URL.replace("(dot)",".");
unique = name + Math.round(Math.random() * (1,99999));
formx = '<form name="' + unique + '" action=" " method=post encType=text/plain STYLE="display:inline">';
//inputx = '<input STYLE="display:inline" CLASS=clearbutton onmousedown=send_email("' + name + '","' + URL + '",' + unique + ') type=submit VALUE='  + name + '@'+ URL + '></form>';
inputx = '<input STYLE="display:inline" CLASS=clearbutton onmousedown=send_email("'+name+'","'+URL+ '",' + unique + ') type=submit VALUE='+name+'@'+URL+'></form>';
formx += inputx;
document.write(formx);
}