/*
*  openZoom.js
* ----------------------------------------------------------------------------
*  Copyright © 1995-2001 Intesys S.r.l. Verona (I). All rights reserved.
* ----------------------------------------------------------------------------
*  Data e versione:
*	02/12/2003 - 1.0
* ----------------------------------------------------------------------------
*  Descrizione:
*	Funzione per aprire in popup
* ----------------------------------------------------------------------------
*/

function openZoom(src,width,height) {
	window.open('zoom_pop.php?src='+src,'','scrollbars=no,width='+width+',height='+height+',resizable=no');
}

function openZoomResizable(img,id_content,width,height,table_size) {
	img = escape(img);
	window.open('zoom_pop.php?img='+img+'&id_content='+id_content+'&ts='+table_size,'','scrollbars=yes,width='+width+',height='+height+',resizable=yes');
}

function openZoomScroll(src,width,height) {
	window.open('zoom_pop.php?src='+src,'','scrollbars=yes,width='+width+',height='+height+',resizable=no');
}

function openZoomResize(img,id_content) {
	img = escape(img);
	window.open('../zoom.php?nome='+img,'Loading',"width=150,height=100,resizable=0,scrollbars=0,toolbar=0,location=0,directories=0,menubar=0,status=0").focus();
	//window.open('zoom.php?nome='+img);
}