function validate() {
	theWindow = window.open("","newWin", "width=300,height=200");
	text1='ofnietisbew';
	text2='emohretniw';
	text3='ten';
	textx='';
		for (i = text1.length - 1; i >= 0; i--) {
//		textx += text1.substr(i,1);
		textx += '&#' + ascii_value (text1.substr(i,1)) + ';';
		}
	textx += '@';
		for (i = text2.length - 1; i >= 0; i--) {
//		textx += text2.substr(i,1);
		textx += '&#' + ascii_value (text2.substr(i,1)) + ';';
		}
	textx += '.';
		for (i = text3.length - 1; i >= 0; i--) {
//		textx += text3.substr(i,1);
		textx += '&#' + ascii_value (text3.substr(i,1)) + ';';
		}
	theWindow.document.write('<html>\n<head>\n');
	theWindow.document.write('<title>NO SPAM ALLOWED</title>\n');
	theWindow.document.write('<LINK REL="stylesheet" HREF="popupstyle.css" TYPE="text/css">\n');
	theWindow.document.write('</head>\n<body>\n');
	theWindow.document.write('<p class="emailpopup">This email address is for individual, personal communication only. Absolutely <b>NO</b> unsolicited bulk email (aka "Spam") of any type whatsoever is permitted under any circumstances.</p>\n');
	theWindow.document.write('<p class="emailpopup">If you are not a stinking spammer then...</p>\n');
	theWindow.document.write('<div class="emaillink" align="center">\n<a href="mailto:',textx,'" onMouseOver="window.status=\'NO SPAM ALLOWED at this email address!\';return true;"onMouseOut="window.status=\'\';return true;">Email Us!</a></div>\n');
	theWindow.document.write('</body>\n</html>\n');
	theWindow.focus;
	}


function ascii_value (c)
{
c = c . charAt (0);
var i;
	for (i = 0; i < 256; ++ i)
	{
var h = i . toString (16);
		if (h . length == 1)
			h = "0" + h;
h = "%" + h;
h = unescape (h);
if (h == c)
			break;
	}
	return i;
}

