/* GLOBAL FUNCTIONS */
/* function to stop evil wrong-doers "phishing" our e-mail addresses */
function fncMailTag(user,domain,subject) {
	var xTxt='<a href="mailto:'+user+'@'+domain+'?subject='+subject+'">';
	xTxt+=user+'@'+domain+'</a>';
	document.write(xTxt);
}
/* function to parse a bookmarked site's url */
function fncBookmark(site) {
	var xUrl='http://www.actiontoday.co.uk/';
	var xTitle='Action Today - Taking Care of Your Finances';
	var xTxt=site;
	if (xTxt=='fav') {
		if ((navigator.appName=='Microsoft Internet Explorer') && (parseInt(navigator.appVersion)>=4)) {
			window.external.AddFavorite(xUrl,xTitle);
		} else {
			var xMsg='Bookmarking to Favourites will not work on your browser';
			if (navigator.appName=='Netscape') msg+='\nPlease press CTRL-D to do this!';
			window.alert(xMsg);
		}
	} else {
		xTxt=xTxt.replace('[u]',xUrl);
		xTxt=xTxt.replace('[t]',xTitle);
		window.location=xTxt;
	}
}
