// JavaScript zoom and print
function addbsk(azione, pid, page, lang, table){
	w = document.images['prodo'].width +150;
	h = document.images['prodo'].height +150;
	ww = ((screen.width/2)-(w/2));
	wh = ((screen.height/2)-(h/2));
	if(azione=="print"){
		figlio = window.open("print.php?page="+page+"&xlang="+lang+"&pkid="+pid+'&table='+table,"winprint","fullscreen=0, width=660,height=580,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0,top=50,left=50");
	}
	if(azione=="zoom"){
		figlio = window.open("zoom.php?par="+pid+'&page='+page+'&lang='+lang+'&table='+table,"winzoom","fullscreen=0, width="+w+",height="+h+",toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0,top=10,left=10");
	}
}




