// attempting to prevent SPAM.
// don't want spammer to read my mailaddress from my html-pages
// aanroepen met <script LANGUAGE="JavaScript" SRC="composeemail.js"></script>
// als button: <INPUT TYPE="button" VALUE="E-mail" ONCLICK="ComposeEmail()">


function ComposeEmail() {
	// attempting to prevent spam.
	who1="dmt";
	who2="talking.com";
	who3="deadman";
	subject="Dean's Columns ";
	parent.location.href='mailto:'+who1+"@"+who3+who2+'?subject='+subject+'';
}


