var numeropaginelistino = 18
var nomecatalogo = "EURO PRICE LIST AP2006/06"

function popup(url, name, width, height)
{
if (screen) {
	LeftPos = (screen.width - width) / 2
	TopPos = (screen.height - height) / 2
}

settings="top="+TopPos+",left="+LeftPos+",fullscreen=no,location=no,directories=no,"+
"status=no,menubar=no,scrollbars=yes,"+
"resizable=no,width="+width+",height="+height;

MyNewWindow=window.open(url,name,settings);
}

//FINESTRA A DIMENSIONE AUTOMATICA PER IMMAGINI

function OpenPhoto(NomeImg){
  BigImg = new Image();
  BigImg.src = (NomeImg);
  Controlla(NomeImg);
}

function Controlla(NomeImg){
  if((BigImg.width!=0)&&(BigImg.height!=0)){
    viewFoto(NomeImg);
  }
  else{
    funzione="Controlla('"+NomeImg+"')";
    intervallo=setTimeout(funzione,20);
  }
}

function viewFoto(img){
	wImg = BigImg.width
	hImg = BigImg.height
	ImgSrc = BigImg.src
	
	if (screen) {
		leftPos = (screen.width - wImg) / 2
		topPos = (screen.height - hImg) / 2
	}
	newWindow=window.open("","NewWin","width="+wImg+",height="+hImg+",left="+leftPos+",top="+topPos+",status=no,menubar=no,resizable=no,scrollbars=no");
	newWindow.resizeTo(wImg+10,hImg+29)
	newWindow.document.write("<HTML>")
	newWindow.document.write("<HEAD>")
	newWindow.document.write("<TITLE>Popup</TITLE>")
	newWindow.document.write("</HEAD>")
	newWindow.document.write("<BODY onLoad='top.window.focus();' topmargin='0' leftmargin='0' bgproperties='fixed'>")
	newWindow.document.write("<TABLE BORDER='0' CELLSPACING='0' CELLPADDING='0' WIDTH='100%' HEIGHT='100%'>")
	newWindow.document.write("<TR>")
	newWindow.document.write("<TD ALIGN='center' VALIGN='middle'>")
	newWindow.document.write("<IMG BORDER='0' NAME='MyImg' SRC='"+ImgSrc+"'>")
	newWindow.document.write("</TD>")
	newWindow.document.write("</TR>")
	newWindow.document.write("</TABLE>")
	newWindow.document.write("</BODY>")
	newWindow.document.write("</HTML>")
	newWindow.document.close()
}
