function changeto(highlightcolor) 
{
//alert('test');
source=event.srcElement
	while(source.tagName!='TR')
		source=source.parentElement 
	if (source.style.backgroundColor!=highlightcolor&&source.id!='ignore' && source.style.backgroundColor!='#ffb484') 
	{
		source.style.backgroundColor=highlightcolor
	}
} 

function changeback(originalcolor) 
{ 
	if (event.fromElement.contains(event.toElement)||source.contains(event.toElement)||source.id=='ignore') 
		return 
	if (event.toElement!=source && source.style.backgroundColor!='#ffb484') 
		source.style.backgroundColor=originalcolor 
} 

function movediv()
{
	txtError.style.top = document.body.scrollTop;
}
