function sobre(src,color_sobre) {
	if (!src.contains(event.fromElement)) {
		src.style.cursor = "hand";
		src.bgColor = color_sobre;
		src.FontColor="ff0000";
	}
}
function fuera(src,color_fuera) {
	if (!src.contains(event.toElement)) {
		src.style.cursor = "default";
		src.bgColor = color_fuera;
	}
}
 
function getUrl(url) {
document.location=url;
}

function getUrlParent(url) {
parent.location=url;
}