function HoverEffectOn(theElement,theAddress)
{
	window.status=theAddress;
	document.getElementById(theElement).style.color = '#FF9900';

}
function HoverEffectOff(theElement)
{
	document.getElementById(theElement).style.color = 'red';
	window.status='';
}
