function popImage(image, width, height) { //Kingsley

  //var options = "'width=" + width + ", height=" + height + "', menubar='no', toolbar='no'"; 
  options = "width=" + width + ", height=" + height + ", menubar='no', toolbar='no', scrollbars=1";
  var w=window.open(image, 'pop', options);
  if (parseInt(navigator.appVersion)>3)
  w.resizeTo(width,height);
  w.focus();
  }
