function closeUp( img, wid, hei, alt ){
  newWindow = window.open( "", "popup", "width=" + (wid + 15) + ",height=" + (hei + 70) );
  newWindow.document.open();
  newWindow.document.writeln( "<HTML><HEAD><TITLE>Heart of Mudgee - Gift Hampers from Australia.</TITLE></HEAD><BODY bgcolor='#000000' leftmargin=0 topmargin=0 marginheight=0 marginwidth=0>>" );
  newWindow.document.writeln( "<div align='center'><IMG SRC='" + img + "' WIDTH=" + wid + " HEIGHT="  +  hei  +  "  ALT='" + alt + "' border='1'></div>" );
  newWindow.document.writeln( "<BR><div align='center'><FORM><INPUT TYPE=button VALUE='Close' onClick='window.close();'></FORM></div></BODY></HTML>" );
  newWindow.document.close();
} 

function showOzCharges(){
  newWindow = window.open( "/oz-charges.shtml", "ozCharges", "width=600,height=600" );
	return false;  
} 