function ModTesto(IDTesto, IDPubb){
	larg = 600;
	alt = 300;

	Alto = (screen.height - alt)/2;
	Sinistra = (screen.width - larg)/2;

	pagina = "PS_Ins_testo.asp?idp=" + IDPubb + "&idt=" + IDTesto;
	win = window.open(pagina, "Instesto", "width="+larg+", height="+alt+", resizable=no, scrollbars=yes, top="+Alto+", left="+Sinistra);
	win.focus();

}

function ModImg(IDImg, IDPubb){
	larg = 600;
	alt = 360;

	Alto = (screen.height - alt)/2;
	Sinistra = (screen.width - larg)/2;

	pagina = "PS_Ins_img.asp?idp=" + IDPubb + "&idt=" + IDImg;
	win = window.open(pagina, "InsImg", "width="+larg+", height="+alt+", resizable=no, scrollbars=yes, top="+Alto+", left="+Sinistra);
	win.focus();

}

function ModRiga(IDRiga, IDPubb){
	larg = 600;
	alt = 200;

	Alto = (screen.height - alt)/2;
	Sinistra = (screen.width - larg)/2;

	pagina = "PS_Ins_Riga.asp?idp=" + IDPubb + "&idr=" + IDRiga;
	win = window.open(pagina, "InsRiga", "width="+larg+", height="+alt+", resizable=no, scrollbars=yes, top="+Alto+", left="+Sinistra);
	win.focus();

}