function openlarge(image, ht, wd)
{
ht += 100;
wd += 24;
var openwindow=window.open('','bigimage',"height=" + ht + ",width=" + wd);
openwindow.document.write("<html><head><title>Apricaria</title>")
openwindow.document.write("</head><body bgcolor='black'><img src='",image,"'>")
openwindow.document.write("<p><font face='verdana' size='1' color='white'>Copyright S Gillings 2007</font></p>")
openwindow.document.write("<center><input type='button' value='Close' ")
openwindow.document.write("onclick='javascript:window.close()'></center></body></html>");
openwindow.document.close();
}

