// use this for email: <a href="mailto:suzannem@frii.net">suzannem@frii.net</a>
// it will print <a href="mailto:suzannem@frii.net">email</a>
// to send to another email address, try: 
//
//	eprint("Raindrops","bobo" + String.fromCharCode(64) + "lala" + 
//	  String.fromCharCode(46) + "net");

// subject  = subject of email
// eto      = email to
// showtext = the hyptertext text
function eprint(subject, eto, showtext)
{
    if (eprint.arguments.length < 3) // no hypertext text, use "email"
    	showtext = "email";
    if (eprint.arguments.length < 2 || eto.length == 0) // no to line, use suz
    	eto = getsuz();

    document.write('<a href=\"mailto:' + eto);
    // there is a subject, add that
    if (eprint.arguments.length > 0 && subject.length > 0)
    	document.write('?Subject=' + subject);
    document.write('\">' + showtext + '<\a>');
}

function getsuz()
{
	cat = "@";
	cpoint = ".";
	return("suzannem" + cat + "frii" + cpoint + "net");
}

