
// **** Email hiding below written by Joshua Kalis
function Email() {
	var fullLink = '<a href="mailto:' + String( Email.arguments[0] ) + '@' + String( Email.arguments[1] ) + '">' + String( Email.arguments[2]? Email.arguments[2]: Email.arguments[0] + "@" + Email.arguments[1] ) + '</a>';
	var output = 'document.write(String.fromCharCode(';
	for( i = 0; i < fullLink.length; i++) {
		output += fullLink.charCodeAt( i ); // **** add character code to list of codes
		if( ( i + 1 ) != fullLink.length ) output += ', '; // **** make sure this is not the last code for the list
	}
	output += '));';
	eval( output );
}
// **** Email hiding above written by Joshua Kalis


// **** initialize the window **** keeps this last ****
window.onload = function() {
	if( initForm ) { initForm(); }
}
// **** initialize the window **** keeps this last ****
