		function sobre(src,Color) {
		    if (!src.contains(event.fromElement)) 
			{
			  src.style.cursor = 'hand';
			  src.bgColor = Color;
			}
		}
		function fuera(src,Color2) {
			if (!src.contains(event.toElement))
			{
			  src.style.cursor = 'default';
			  src.bgColor = Color2;
			}
		}
		function pulsar(src,Color2) {
		    if(event.srcElement.tagName=='TD')
			{
			  src.bgColor = Color2;
			  src.children.tags('A')[0].click();
			}
		}

