

// funcion Rolover Menu Lateral

function activa (src,accion) {
 if (accion) {
 	src.bgColor="#BBD678";
 	src.style.cursor = 'hand';
 } else {
	src.bgColor="#C9DE93";
 	src.style.cursor = 'default';
 }
}

function activaP (src,accion) {
 if (accion) {
 	src.bgColor="#D9EBAD";
 	src.style.cursor = 'hand';
 } else {
	src.bgColor="#FFFFFF";
 	src.style.cursor = 'default';
 }
}

function activaPrint (src,accion) {
 if (accion) {
 	src.bgColor="#156917";
 	src.style.cursor = 'hand';
 } else {
	src.bgColor="#298E2C";
 	src.style.cursor = 'default';
 }
}

function imprimir () {
 window.open('/PaginaImpresion.asp');
}
