function apriAutoImg (URL){
	var s='no';
	var r='no';
	var features ="menubar=no,toolbar=no,status=no,scrollbars="+s+",resizable="+r+"";
	var finestra = window.open("","",features);
	finestra.document.write("<html>\n<head><title>"+URL+"</title><head>\n");
	finestra.document.write("<body onload=\"window.resizeTo((document.imgs.width+8),(document.imgs.height+48))\" leftmargin=\"0\" topmargin=\"0\" rightmargin=\"0\" bottommargin=\"0\" marginwidth=\"0\" marginheight=\"0\" bgcolor=\"#D6D4C0\">");
	//finestra.document.write("<body onload=\"alert((document.imgs.width)+','+(document.imgs.height))\" leftmargin=\"0\" topmargin=\"0\" rightmargin=\"0\" bottommargin=\"0\" marginwidth=\"0\" marginheight=\"0\" bgcolor=\"#D6D4C0\">");
	finestra.document.write("<img src=\""+URL+"\" name=\"imgs\" border=\"0\">\n");
	finestra.document.write("</body></html>");
	finestra.document.close();
}