function showLoadImage(showtext)
{
	return " <img src='images/tiny_red.gif' /> " + showtext;
}

function doMouseOver(mouseobject)
{
mouseobject.style.color = 'red';
}

function doMouseOut(mouseobject)
{
mouseobject.style.color = '';
}

