
function zoom(arg){
	var pos = arg.lastIndexOf('/');
	var arg1 = arg.substr(pos+1);
	window.open('../zoom.html?img='+arg1,'ave_zoom','width=500, height=500');
}

function zoom2(arg){
	var pos = arg.lastIndexOf('/');
	var arg1 = arg.substr(pos+1);
	window.open('../zoom2.html?img='+arg1,'pubb_zoom','width=400, height=560');
}

function carica(w,h){

	var imgdir = 'http://www.aveindustries.com/zoom/';
	var url = document.location+''; 
	var pos = url.indexOf('img=');
	
	var img = url.substr(pos+4);
	var zoom = new Image(w,h);
	zoom.src = imgdir+img;
	document.images[0].src = zoom.src;
	window.focus();
}