/********* funciones custom ***********************/

function poplocation(){
	window.open("imagenes/mapa2.gif","aaa","width=420, height=340, scrollbars=no, toolbar=no");
}
function equalHeight(group) {
	var tallest = 0;
	group.each(function() {
		var thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}

