// Copyright (c) 2003 Beagle Computing Pty Ltd. All rights reserved.

//====================================================================
//
//  JavaScript code to hide email addresses
//
//  Copyright Beagle Computing Pty Ltd, 2003
//
//  www.beagle-it.com
//
//	version:	1.0
//	Date:		12 Feb 2003
//
//====================================================================

// ===================== externally accessible data and functions ====================

function writeEM(recipient, domain, subject, linkText) {	
	var mTo = "mailto:";
	var atSymbol = "@";
	var subjectIs = "?subject=";
	
	document.write('<a href="' + mTo + recipient + atSymbol + domain + subjectIs + subject + '">');
	if (!linkText) {
		linkText = recipient + atSymbol + domain;
	}
	document.write(linkText + '</a>');
}
