//antispam.js

function sendmail(name,text,subject,body){
	d ="btopenworld";
	e =".com";
	str='<a href="mailto:' + name + '@' + d + e
	if(subject != ""){
		str+='?subject=' + subject
		if(body!="")str+="&body=" + body
	}
	str+= '">'
	if(text==""){
		str+= name + '@' + ispd[arraypos] + ispe[arraypos]
	}else{
		str+= text
	}
	str+='</a>'


	document.write(str);
};

