function zoom(image,width,height) {
        if(typeof(width)=='undefined' || width=='') width=380;
        if(typeof(height)=='undefined' || height=='') height=420;
        width+=40;
        height+=100;
        window.open('/zoom.pl?i='+image,'zoom','width='+width+',height='+height);
	return false;
}

function zoom2(image,width,height) {
        if(typeof(width)=='undefined' || width=='') width=380;
        if(typeof(height)=='undefined' || height=='') height=420;
        width+=40;
        height+=100;
        window.open('/zoom.pl?i='+image,'zoom','width='+width+',height='+height+',scrollbars=yes');
	return false;
}
