function on_news() {	if ($("news_table")) {				for (f=0;f<$("news_table").getElementsByTagName("A").length; f++) {			t = $("news_table").getElementsByTagName("A")[f];			lingua = parse_str("lang",t.href);			anno_id = parse_str("id",t.href);			idn = parse_str("idn",t.href);			t.href = "javascript:open_popup("+lingua+","+anno_id+","+idn+")";		}	}	xsize = 1008;	// xsize = (isMSIE) ? xsize+60 : xsize;		if (isMSIE) {		if (!gteIE7) {		xsize = xsize+60;		}	}		popup1.start(xsize,0);}function open_popup(lingua, anno_id, idn) {		new Ajax.Request("addons/_apri_popup.php", {		method: "post",		parameters: {lingua:lingua, anno_id:anno_id, idn:idn},		onSuccess: function (a) { 						$("popup1div").innerHTML = a.responseText;			fs = $("gallery_files").value;						gallery1.render(fs);			popup1.open();		}	});}addLoadEvent(on_news);
