<!--Begin
//text: change to your own
// Create Array ["Heading", "Message Must be one continuos line"]
myMsg=new Array(

["Smart Dog","Three racehorses were in the stable waiting for the big race. Trying to psych each other out, they began bragging.<br><b>First horse:</b> 'I've been in 38 races and have only lost twice.'<br><b>Second horse:</b> 'Well, I've been in 47 races and have never lost.'<br><b>Third horse:</b> 'Huh, I've never lost either and I even beat Secretariat twice.'<br>Just then, they heard a chuckle by the stable door, and there was a greyhound dog walking up to them.<br><b>The greyhound said: </b>'That's nothing. I've been in over 200 races and have won every one by at least 3 lengths.'<br><b>First horse:</b>'Wow! That's amazing - a talking dog!'<br><div align='right'><font size='-1' color='black'>Submitted by: webmaster, Den 15</font></div>"]

// Last Item on the List
);

var i;
for (i=0; i<myMsg.length; i++) {
	document.write('<table border="0" cellpadding="0" cellspacing="0"><tr><td>');
	document.write('<a href=');
	document.write('"javascript:Toggle(');
	document.write("'w" + i + "')");
	document.write('"');
	document.write(' onmouseover="Toggle(');
	document.write("'w" + i + "')");
	document.write('">');
	document.write('<font size="+1" style=color="Blue;font-weight:bold;">');
	document.write(myMsg[i][0] + "</font></a>");
	document.write('<div id="w' + i + '" class="UpEvents" style="width:475px;background-color:white;DISPLAY: none">');
	document.write(myMsg[i][1] + "</div>");
	document.write("</td></tr></table><br>");
}

function Toggle( elemId )
{
	var id = document.getElementById( elemId );
	if (id.style.display == "none")
		eval("id.style.display = 'block';");
	else
		eval("id.style.display = 'none';");
}
