function mOver(src)//, statusmsg)
{
	if (!src.contains(event.fromElement))
    {
		//self.status = '.:: ' + statusmsg + ' ::.';
		src.bgColor = '#FFFFFF';
		src.style.cursor = "pointer";      // pointer = hand, pointer es estandar y compatible con firefox (hand no)
		src.decoration = 'underline';
		//src.style.color = '#6181BC';
	}
}
function mOut(src)
{
	if (!src.contains(event.toElement))
    {
		src.style.cursor = 'default';
		//self.status = '';
		src.bgColor = '#FFFFFF';
		//src.style.color = '#FFFFFF';
	}
}
function mClick(url)
{
//	if(event.srcElement.tagName=='TD')
//    {
		//src.children.tags('A')[0].click();
//		self.location = url;
//	
       //parent.mainFrame.location.href = url;
	   self.location = url;
}
