function openlarge2(image, text, ht, wd)
{
ht += 140;
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'>")
openwindow.document.write("<p><font face='verdana' size='2' color='white'>",text,"</font></p>")
openwindow.document.write("<img src='",image,"'>")
<!--openwindow.document.write("<p><font face='verdana' size='1' color='white'>Copyright S Gillings 2007</font></p>")-->
openwindow.document.write("<p></p><center><input type='button' value='Close' ")
openwindow.document.write("onclick='javascript:window.close()'></center></body></html>");
openwindow.document.close();
}

