// JavaScript Document

function writemask(domain,alias,subject,caption){
	var zero1='<';
	var zero2='a hr';
	var zero3='ef="';
	var one='mai';
	var two='lto:';
	var three='?Subject=';
	var four='">';
	var five="</a>";
	var middle='@';
	var who=alias+middle+domain;
	if (typeof caption=='undefined') {caption=''}
	if (caption=='') {caption=who}
	if (typeof subject=='undefined') {subject=''}
	if (subject=='') {three=''}
	var putogether= zero1+zero2+zero3+one+two+who+three+subject+four+caption+five;
	document.write(putogether);
}
