function closeUp( img, wid, hei, caption ){
  newWindow = window.open( "", "popup", "width=" + (wid + 15) + ",height=" + (hei + 250) );
  newWindow.document.open();
  newWindow.document.writeln( "<HTML><HEAD><TITLE>Heart of Mudgee - Gift Hampers from Australia.</TITLE><link type='text/css' rel='stylesheet' href='/include/style.css'></HEAD><BODY bgcolor='#000000' leftmargin=0 topmargin=0 marginheight=0 marginwidth=0>>" );
  newWindow.document.writeln( "<div align='center'><IMG SRC='" + img + "' border='1'></div>" );
  newWindow.document.writeln( "<div align='center'><b style='color: #ffffff;'>" + caption + "</b></div>" );

  newWindow.document.writeln( "<BR><div align='center'><FORM><INPUT TYPE=button VALUE='Close' onClick='window.close();'></FORM></div></BODY></HTML>" );
  newWindow.document.close();
} 