function image_open(image_loc,width,height){
  var var_image = new Image();
  var_image.src = image_loc;
  height = height + 20;
  width = width + 20;
  window.open(var_image.src,"myImage","width="+width+",height="+height+",top=10,left=10");
  }
