function popupNoteEmail(id_noticia){
	w = 450;
	h = 380;
	l = Math.floor((screen.availWidth - w) / 2);
	t = Math.floor((screen.availHeight - h) / 2);
	popupWindow = open('smarty/frontend/popups/mail.noticia.popup.php?id_noticia='+id_noticia,'win_mail','menubar=no,status=no,titlebar=no,toolbar=no,width='+w+',height='+h+',scrollbars=no,resizable=no,top='+t+',left='+l);
	popupWindow.opener = self;	
}

function popupNotePrint(id_noticia){
	w = 560;
	h = 600;
	l = Math.floor((screen.availWidth - w) / 2);
	t = Math.floor((screen.availHeight - h) / 2);
	popupWindow = open('smarty/frontend/popups/print.noticia.popup.php?id_noticia='+id_noticia,'win_print','menubar=no,status=no,titlebar=no,toolbar=no,width='+w+',height='+h+',scrollbars=yes,resizable=no,top='+t+',left='+l);
	popupWindow.opener = self;
}
