// Richard Gunn - www.bladezone.com - May 2004//

function bzmail (address) {
	var address_splitter = "*offworld*" ; //replace the @ symbol with this keyword in the email address
	var filter_keyword = "Unicorn" ; //when downloading mail use this keyword to spot genuine emails
	var subject = filter_keyword + ": (*Put your subject here - don't delete anything outside the brackets*)";
	address = address.split(address_splitter);
	address = address.join("@");
	address = address + "?subject=" + escape(subject);
	window.open ('mailto:'+address,'_main');
}

function bzm_over()
{
  window.status = "Bladezone anti-spam email with formatted subject field - click to launch your email program..." ;
}

function bzm_out() {
  window.status = "" ;
}

