
  // Opens a window to an image specified in the path parameter
  function OpenImage(path) {
  	newWindow = window.open(path,'win','scrollbars=yes,resizable=yes');
	window.newWindow.focus();
  }