function mel(host,ext,name,subject,content,style)
{
	document.write("<a href=\""+"mailto:");
	document.write(name+"@"+host+"."+ext);
	if( subject)
		document.write(" subject=\""+subject+"\"");
	document.write("\"");
	if(style)
		document.write(" style=\""+style+";\"");
	document.write(">");
	document.write(content);
	document.write("</a>");
}
