/* 
Filename: Utils.css
Author:   Jim Gillespie
Purpose:  JavaScript utilities for www.anforth.info
Created:  10 March 2006
Revised:
*/

function showEmail(strTitle) {
    var name = "anfortha";
    var host = "bigpond.net.au";
    document.write('<a href="mailto:' + name + '@' + host + '"' + ' title=" ' + strTitle + ' ">' + name + '@' + host + '</a>');
}
