function OvrServ(src)
{ 
src.style.cursor = 'hand';
src.style.backgroundColor = '#2968AF';
src.style.borderColor = '#173980';

if(event.srcElement.tagName=='TD') {window.status=src.children.tags('A')[0];
}
	return true;
}


function OutServ(src)
{ 
src.style.cursor = 'default';
src.style.backgroundColor = '#6FA7DA';
src.style.borderColor = '#6FA7DA';
window.status='';
	return true;
}


function GoServ(src) 
{
if(event.srcElement.tagName=='TD') {
src.children.tags('A')[0].click();
}
}