// JavaScript Document
function zoom(img)
{
  var width="900", height="6000";
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  var styleStr='toolbar=no,location=no,directories=no,status=no,menubar=yes,resizable=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  var styleStr="scrollbars=yes";
  var msgWindow = window.open("","msgWindow", styleStr);
  var head = '<head><title>Zaras Antiques</title></head>';
  var body = '<body bgcolor="#FFFFFF"><center><img src="' +  img + '"></body>';
  msgWindow.document.write(head + body);	
}

