function popup(num){
	x = 600;
	y = 600;
	xscreen = screen.width;
	yscreen = screen.height;
	pag = "../data/galleria/" + num;
	newWin=window.open('', '', 'width=' + x +',height= ' + y +',scrollbars=no,resizable=no,titlebar=no');
	newWin.document.write("<html><head><title>Formage Festival</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\">");
	newWin.document.write("<td align=\"center\" valign=\"middle\"><img src=\"" + pag + "\"></td>");
	newWin.document.write("</tr></table></body></html>");
	newWin.moveTo(xscreen/2-x/2,yscreen/2-y/2);
	return false;	
}