// JavaScript Document

function MO(e)
{
if (!e)
var e=window.event;
var S=e.srcElement;
while (S.tagName!="TD")
{S=S.parentElement;}
S.className="T";
}
function MU(e)
{
if (!e)
var e=window.event;
var S=e.srcElement;
while (S.tagName!="TD")
{S=S.parentElement;}
S.className="P";
}

function abrir(p) {
    window.open(p, '_self');
	}


function HoverCell_1(strOnOff,oSourceTag)
{
	window.onerror = null;
	var isIE;
	var oTagID;
	if (navigator.appVersion.indexOf('MSIE') != -1)
	{
		isIE = true;
		oTagID = oSourceTag.style;
	}
	else
	{
		isIE = false;
		oTagID = eval("ids." + oSourceTag.id);
	}
	
	
	if (strOnOff == 'on')
	{
		oTagID.backgroundColor = '#d5e5f8'; 
		oTagID.color = '#000000';
	}
	else
	{
		oTagID.backgroundColor = '#F2F2F2';
		oTagID.color = '#000000';
	}
	return true;
}