var VIEW_IMAGE_PAGE = "http://www.totallysouth.com.au/display.jspx";  //absolute to the page that calls view_image().

/** Open image window */
function view_image(path, w, h) {
  var image_request_url = VIEW_IMAGE_PAGE + '?path=' + path + '&w=' + w + '&h=' + h;
  var image_win_params = 'width=' + (w+20) + ',height=' + (h+20) + ',directories=0,location=0,menubar=0,resizable=1,scrollbars=0,status=0,toolbar=0';
  window.open(image_request_url, 'viewImage', image_win_params);

  return false; //to stop the browser following the 'actual' link.
}
