
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-15 : 0;
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	
	win = window.open('',myname,settings)
	
	win.document.writeln("<html><title>Ingrandimento foto</title><BODY bgcolor=#FEFEDA><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 zoom_giocatore(giocatore,myname,w,h,scroll,didascalia)
{
	w=w+20
	h=h+60
	foto="foto/"+giocatore+".jpg"
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2-15 : 0;
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	
	win = window.open('',myname,settings)
	
	win.document.writeln("<html><title>Ingrandimento foto</title><BODY bgcolor=#FEFEDA><img src='"+foto+"'><br><center><font size='1' face='Verdana, Arial, Helvetica, sans-serif'>"+didascalia+"<br><a href='public/documenti/"+giocatore+".xls' target=_blank>Tabellini</a><br><a href='#' onclick='Javascript:window.close()'>Chiudi</a></font></center></html>")
	if(win.window.focus){win.window.focus();}
}


