			var shouldDisplay = new Array();
			var shouldDisplayFormatExample = false;


		function toggleFormatExample()
		{
			if (shouldDisplayFormatExample)
			{

				window.document.getElementById('FormatExample').style.display = '';
				window.document.getElementById('FormatExampleYesJS').style.display = 'none';
				window.document.getElementById('HideFormat').style.display = '';
			} else
			{
				window.document.getElementById('FormatExample').style.display = 'none';
				window.document.getElementById('FormatExampleYesJS').style.display = '';
				window.document.getElementById('HideFormat').style.display = 'none';
			}
			shouldDisplayFormatExample = !shouldDisplayFormatExample;
		}

		function hideClassifiedAtIndex(index)
		{
			window.document.getElementById('noJavaScript' + index).style.display='none';
			window.document.getElementById('yesJavaScript' + index).style.display='';
			window.document.getElementById('contactPoster' + index).style.display='none';
		}

		function toggleContactDisplay(index)
		{
			if (shouldDisplay[index] == null)
			{
				shouldDisplay[index] = true;
			}
			if (shouldDisplay[index])
			{
				window.document.getElementById('contactPoster' + index).style.display = '';
// If the number of forms on this page is > 2 (login form and jump-to-page form) then the user is logged in so focus on the text box.
// A better way to do this would be to ID (name) each element in the classified.
				if (window.document.forms.length > 2)
				{
					window.document.forms(index).elements(0).focus();
				}
			} else
			{
				window.document.getElementById('contactPoster' + index).style.display = 'none';
			}
			shouldDisplay[index] = !shouldDisplay[index];
		}