function openwindow(picture,width,height) {
picturebox = 0;
if (!picturebox || picturebox.closed)
{ // do nothing
}
else
{ picturebox.close(); }
picturebox = window.open("","_blank","toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,height="+(height)+",width="+(width)+",top=0,left=0")
picturebox.document.write ("<html><head><title>POISE Magazine</title></head>\n")
picturebox.document.write ("<body marginwidth=\"0\" marginheight=\"0\" topmargin=\"0\" leftmargin=\"0\">\n")
picturebox.document.write ("<img src=\""+picture+"\" width=\""+width+"\" height=\""+height+"\" /></td></tr>\n")
picturebox.document.write ("</body></html>\n")
}
