
<!--
var w=0;
var xw,yh;
var max_size=192;
function zoom_in(){
  if (Math.floor(document.img1.width)<max_size) {
    xw =document.img1.width;
    yh =document.img1.height;
    w=Math.floor(xw)+4;
    h=Math.floor(w);
    document.img1.height=h;
    document.img1.width=w;
  }
  else if (Math.floor(document.img1.width)>max_size) {
    w=max_size;
    h=Math.floor(w);
    document.img1.height=h;
    document.img1.width=w;
  }
setTimeout("zoom_in()",1);
}
//-->
