// This function creates a robot-proof e-mail link
// Davide Andrea 2008 / modified by Frign 20.04.2011
// Usage: <script type="text/javascript">mail('user','text')</script>
// Replace "user" with the part before the @
// Replace "text" with the what appears on the link
function mail(user,text){	// Receives the name of the user, the text in the link
	document.write('<a href="mailto:' + user + '@flashsucks.org">' + text + '</a>');
	document.getElementById('address').innerHTML = "";
}
//	-->

