// A simple "mailto:" link generator.
//
// Martin Purbrook
// Copyright 2003
//
// There is a remote chance that this script may reduce the number of times an
// e-mail address is extracted from a web page.  Of cousre, the same could be 
// done simply by not having any "mailto:" links on a page....

function mail_to (dom, who) {
   document.location.href = "mailto:" + who + "@" + dom;
}


