//<!--[CDATA[


/*-------------------------------------------
KOY WebDev AntiSpam Functions
Copyright (C) 2003 KOY Software/KOY Web Development

Version: 0.0.0001
Modified: 9/12/2002
Created: 9/12/2002


[Function List]
External
	- AntiSpam(address)
--------------------------------------------*/




/*--------------------------------------------------------------------------------------
AntiSpam(address)
	address		Email address, with the @ replaced with an //.
	
	Responds like a normal mailto, but with spambot protection.
--------------------------------------------------------------------------------------*/
function AntiSpam(address) {
	window.location = ("mailto:" + address.replace("//", "@"));
}


// ]]-->