// pbm.js JavaScript Document
function killSpam(uName,domain,subject) {
	// This function will assemble a mailto reference from the 
	// information passed. 
	// uName represents the user name
	// domain is the domain.
	// subject is the subject of the email. If passed as an empty
	//      string, no subject will be assumed.
	var refString = "mailto:";
	refString += uName + "@" + domain;
	if (subject != "") {
		refString += "?Subject=" + subject + "";
	}
	// set our location to the mailto reference
	self.location = refString;
}
		