<!--//

function finestra_zoom_UNUSED( winTitle, path, width, height, numColor ){
	centered = "yes"; // or "no". relative position to the screen.
	xPos = 10; //absolute position from left. centered value mast be "no".
	yPos = 10; //absolute position from top. centered value mast be "no".
	botClose="/design/webcontent/images/close.gif"; // 14x14 px
	botClose_on="/design/webcontent/images/close_on.gif"; 
	botMinimize="/design/webcontent/images/min.gif"; //for popup object version.
	botMinimize_on="/design/webcontent/images/min_on.gif";  //for popup object version. SP1
	topBorder=42;
	botBorder=2;
	rightBorder=2;
	leftBorder=2;
	borderColor="#FF0000";  // for none: ""
	borderColorOn="#FF0000"; // for none: ""
	backGroundImage="xx.gif"; // or "image.gif"
	titleImage="/design/webcontent/images/logo_popup.gif"; // if this is "image.gif", image.gif will be placed instead of the winTitle 
	titleFontFamily="Arial,Verdana";
	fontStyle= "normal";  // or "italic"
	titleFontSize= 10; 
	titleFontWeight="bold"; // or "normal"
	titleFontColor= "#000000";
	titleAlign= "top";  // or "bottom"  //also for close & minimize button
	scrollbars="yes"; // or "yes"
	
	openwin(path,scrollbars,width,height,winTitle,botClose,botClose_on,botMinimize,botMinimize_on,topBorder,botBorder,rightBorder,leftBorder,borderColor,borderColorOn,backGroundImage,titleImage,titleFontFamily,fontStyle,titleFontSize,titleFontColor,titleFontWeight,titleAlign,centered,xPos,yPos);
}

function finestra_zoom( nome )
{

var w=640
var h=480
var x = (screen.width -w)/2
var y = (screen.height - h)/2
var finestra=window.open(nome,'ingrandimento','width=' + w +',height=' + h + ', toolbar=no,directories=no,location=no,status=no,menubar=no,copyhistory=no,scrollbars=no,resizable=no')
finestra.moveTo(x,y);
finestra.focus();
 }

function news_zoom_foto( nome )
{

var w=600
var h=500
var x = (screen.width -w)/2
var y = (screen.height - h)/2
var finestra=window.open(nome,'zoom','width=' + w +',height=' + h + ', toolbar=no,directories=no,location=no,status=no,menubar=no,copyhistory=no,scrollbars=no,resizable=no')
finestra.moveTo(x,y);
finestra.focus();
 }
//-->