function mostrarDivInfoNoticia(div,id){	
	modificarFlash("flash",0);
	FAjax ('secciones/informacionNoticia.php', div, 'id='+id, 'POST');
	if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){
		/* Caso de ie */
		document.getElementById(div).style.left = (screen.width / 2) -400;
		document.getElementById(div).style.display ='';
		
		document.getElementById('fondoNoticia').style.display ='';
	}else{
		document.getElementById(div).style.left = (screen.width / 2) -450;
		document.getElementById(div).style.display ='';
		
		document.getElementById('fondoNoticia').style.display ='';
	}
}		
function closeNoticiaInfo(){
	/* Desactivamos el fondo negro, ocultamos el div de la info y volvemos a activar el flash */
	modificarFlash("flash",1)
	document.getElementById('fondoNoticia').style.display ='none';
	document.getElementById('noticiaInfo').style.display ='none';
	
}

