function entrar(src,color_entrada1,color_entrada2) {
	if (!src.contains(event.fromElement)) {
		//src.bgColor=color_entrada;
		src.style.background=color_entrada1;
		src.style.cursor="hand";
		//src.style.border = '#2e659a solid 0px';
		//src.style.color = '#2e659a';
		src.style.color = color_entrada2;
	}

}
function salir(src,color_entrada1,color_entrada2) {
	if (!src.contains(event.toElement)) {
		//src.bgColor=color_default;
		src.style.background=color_entrada1;
		src.style.cursor="default";
		//src.style.border = '#2e659a solid 0px';
		//src.style.color = '#E8EAF0';
		src.style.color = color_entrada2;
	}
}
function abajo(src,color_entrada1,color_entrada2) {
	if (!src.contains(event.fromElement)) {
		//src.bgColor=color_default;
		src.style.background=color_entrada1;
		src.style.cursor="hand";
		//src.style.border = '#2e659a solid 0px';
		//src.style.color = '#f7f3dd';
		src.style.color = color_entrada2;
	}
}
function pulsar(src) {
	//if(event.srcElement.tagName=='TD'){
		location.href=src
		//src.children.tags('A')[0].click();
	//}
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
