var revealed = false;

function ShowAddress()
{
	if( revealed == false )
	{
		// define the address as an array of broken up characters so stupid bots
		// can't directly parse the email address
		
		var temp = new Array();

		temp[10] = "@";
		temp[11] = "i";
		temp[12] = "g";
		temp[13] = "o";
		temp[14] = "t";
		temp[15] = "t";
		temp[16] = "a";
		temp[17] = "b";
		temp[18] = "e";
		temp[19] = "l";
		temp[20] = "i";
		temp[21] = "e";
		temp[22] = "v";
		temp[23] = "e";
		temp[24] = ".";
		temp[25] = "c";
		temp[26] = "o";
		temp[27] = "m";
		temp[0] = "b";
		temp[1] = "i";
		temp[2] = "l";
		temp[3] = "l";
		temp[4] = "y";
		temp[5] = "n";
		temp[6] = "o";
		temp[7] = "l";
		temp[8] = "e";
		temp[9] = "n";

		// build the actual email address
		
		var address = "";

		for( index in temp )
		{
			address += temp[index];
		}

		// replace text in the address element with the actual email address

		element = document.getElementById( "address" ).childNodes[0];
		element.nodeValue = address;

		revealed = true;
	}
}

