// ==============================================
// ANTI-SPAM JAVASCRIPT
//
// Save the following as 'nospam.js' and upload to server
// Change function name and values for a, b & c
// Copy & paste function and change values if more email
// address functions are needed.
// ==============================================

// FUNCTION 1 - For first email address
<!--
function info(text) {
a = "info"
b = "remotetheplay.com"
c = "info@remotetheplay.com"
d = "REMOTE [Ticket Center] - Question"

if (text == "")
document.write("<a href='mailto:" + a + "@" + b + "?SUBJECT=" + d +"'>" + c + "</a>");
else 
document.write("<a href='mailto:" + a + "@" + b + "?SUBJECT=" + d +"'>" + text + "</a>");
}
//-->

// END 'nospam.js'


// ==============================================
// PASTE BETWEEN <HEAD></HEAD> TAGS
//
// src= Path to the 'nospam.js' file.
// Remove '//' when pasting in HTML page
// ==============================================

//<script language="javascript" type="text/javascript" src="nospam.js"></script>


// ==============================================
// PASTE IN HTML TO SHOW EMAIL ADDRESS
// 
// Change function name to call the function that
// corresponds with the email address you wish to use.
// You can enter optional text to show as the link.  If no text
// is entered the email address will show as the link, but
// will still be spam-free and only visible to the person
// viewing the page.
//
// Remove '//' when pasting in HTML page
// ==============================================

// <script language="javascript">
// <!--
// functionname("optional text here");
// --></script>
// <noscript></noscript>