// JavaScript Document

function openImageGalery(id,hgt,wdt)
{	
	hgt = parseInt(hgt)+60;

	wdt = wdt > window.screen.width ? window.screen.width : wdt;	
	hgt = (hgt > window.screen.height) ? window.screen.height : (hgt);	
	
	window.open('noticia_foto_vis.php?id_noticia_foto='+id,'foto_news_'+id,'scrollbars=yes,width='+wdt+',height='+hgt);
}
