
var win = null;
function nuova(mypage,myname,w,h,scroll,didascalia)
{
	w=w+20
	h=h+60
	foto=mypage
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	
	win = window.open('','',settings)
	
	win.document.writeln("<html><title>Ingrandimento foto</title><BODY bgcolor=#FDDDAB><img src='"+foto+"'><br><center><font size='2' face='Verdana, Arial, Helvetica, sans-serif'>"+didascalia+"<br><a href='#' onclick='Javascript:window.close()'>CHIUDI</a></font></center></html>")
	if(win.window.focus){win.window.focus();}
}

function mappa(mypage,myname,w,h,scroll)
{
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	win = window.open(mypage,'',settings)
	if(win.window.focus){win.window.focus();}
}

function approfondimento(mypage,myname,w,h,scroll)
{
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	nomefile=mypage
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	w1=w-20
	h1=h-100
	win = window.open('','',settings)
	win.document.writeln("<BODY bgcolor=#F6EFDD><iframe scrolling='no' src='" + nomefile + "' frameborder='0' width='"+ w1 + "' height='" + h1 + "'></iframe><br><center><font size='2' face='Verdana, Arial, Helvetica, sans-serif'><br><a href='#' onclick='Javascript:window.close()'>CHIUDI</a></font></center></html>")
	if(win.window.focus){win.window.focus();}
}

