﻿//-------------------------------------------------------------------------------------------------------//
// Selecciona la imagen del grifo del cursor                                                             //
//-------------------------------------------------------------------------------------------------------//
function selGrifo(Capa,Capa2)
{
	document.getElementById(Capa).style.borderColor="#000000";
	document.getElementById(Capa).style.borderBottomWidth="1px";
	document.getElementById(Capa2).style.backgroundColor="#A7D2A8";
}
//-------------------------------------------------------------------------------------------------------//
// Deselecciona la imagen del grifo al salir del foco.                                                   //
//-------------------------------------------------------------------------------------------------------//
function desSelGrifo(Capa,Capa2)
{
	document.getElementById(Capa).style.borderColor="#8090B0";
	document.getElementById(Capa).style.borderBottomWidth="1px";
	document.getElementById(Capa2).style.backgroundColor="#B7E2B8";
}

