

	function mOvr(color,src) {
		if (!src.contains(event.fromElement)) {
		src.style.cursor = 'hand';
		src.bgColor = color;
		}
	}
	function mOut(color,src) {
		if (!src.contains(event.toElement)) {
		src.style.cursor = 'default';
		src.bgColor = color;
		}
	}
	function mClk(src) {
		if(event.srcElement.tagName=='TD'){
		src.children.tags('A')[0].click();
		}
	}

	function mapover(idname,clase)
	{

		var css_style= eval ('document.all.tdb'+idname+'.style');
		var css_style2= eval ('document.all.tdp'+idname+'.style');
		if ((document.all) && (clase==null))		
		{				
				css_style.background="#A0A093";			
				css_style2.background="#FE7E29";			
				css_style.cursor = 'hand';
		}
		else if((document.all) && (clase=='1')) {

				css_style.background="#A0A093";			
				css_style2.background="#36BF00";			
				css_style.cursor = 'hand';
		}
	}
	function mapout(idname)
	{
		var css_style= eval ('document.all.tdb'+idname+'.style');
		var css_style2= eval ('document.all.tdp'+idname+'.style');
		if (document.all)		
		{				
				css_style.background="#D6D6D6";			
				css_style2.background="#D6D6D6";			
				css_style.cursor = 'default';
		}
	}
