var win = null;
function NewWindow(file,width,height)
{
	var page
	page = 'dettaglio.php?IMG=' + file
	LeftPosition = (screen.width) ? (screen.width-width)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-height)/2 : 0;
	settings = 'height='+ height +',width='+ width + ', top=' + TopPosition + ', left=' + LeftPosition + ', scrollbars=no, resizable=no'
	win = window.open(page,name,settings)
	if(win.window.focus)
	{
		win.window.focus();
	}
}

var winBig = null;
function NewWindowBig(file,testo,from,name)
{
	var page
	page = 'dettaglio.asp?img=' + file + "&testo=" + testo + "&from=" + from
	settings = 'top=10, left=10, scrollbars=yes, resizable=yes, location=No, menubar=Yes, status=Yes, toolbar=Yes'
	winBig = window.open(page,name,settings)
	if(winBig.window.focus)
	{
		winBig.window.focus();
	}
}

