function ChaCol(p_Lin)
{
p_Lin.style.backgroundImage = 'url("img/empOn.gif")';
}

function RemCol(p_Lin)
{
p_Lin.style.background = 'url(img/backmenu.gif)';
}


function ChaCol2(p_Num)
{
document.getElementById("c"+p_Num).style.color="#FF7B18";
}

function RemCol2(p_Num)
{
document.getElementById("c"+p_Num).style.color="#199FDD";
}

function Rec()
{
	if (document.forms[0].o_txtRec.value != '')
		return true;
	else
	{
		alert (document.forms[0].o_errRec.value );
		return false;
	}
}

function RecImg()
{
	if (Rec())
		document.forms[0].submit();
}


