/*
* Modifica los enlaces para que se abran en una ventana nueva de navegador 
*/
function modificarEnlacesVentanaNueva() {
	if ((arrayPuntosMenu != null) && (arrayPuntosMenu.length > 0)) {
		var expr = null;
		for (var i=0; i<arrayPuntosMenu.length; i++) {
			expr = 'portal.do\?IDM=' + arrayPuntosMenu[i][0] + '&NM=' + arrayPuntosMenu[i][1];
			$("body a").each(function(){
				if ($(this).attr("href").indexOf(expr) >= 0) {
					$(this).attr("target","blank");
				}
			});
		}
	}
}
