function popup(gall,num){
	x = 600;
	y = 500;
	xscreen = screen.width;
	yscreen = screen.height;
	pag = "../gallerie/" + gall + "/" + num + ".jpg";
	newWinVol=window.open('', '', 'width=' + x +',height= ' + y +',scrollbars=no,resizable=no,titlebar=no');
	newWinVol.document.write("<html><head><title>Volontari del Soccorso</title></head><body bgcolor=\"#000\" style=\"margin:0;padding:0;vertical-align:center; \"><table width=\"" + x +"\" height=\""+y+"\" cellpadding=\"0\" cellspacing=\"0\"><tr valign=\"middle\">");
	newWinVol.document.write("<td align=\"center\" valign=\"middle\"><img src=\"" + pag + "\"></td>");
	newWinVol.document.write("</tr></table></body></html>");
	newWinVol.moveTo(xscreen/2-x/2,yscreen/2-y/2);
}

function popupCartina(){
	x = 760;
	y = 600;
	xscreen = screen.width;
	yscreen = screen.height;
	pag = "../fotoalbum/cartina/index.html";
	newWinVol=window.open(pag, '', 'width=' + x +',height= ' + y +',scrollbars=no,resizable=no,titlebar=no');
	newWinVol.moveTo(xscreen/2-x/2,yscreen/2-y/2);	
}