<!--
function popupwindow(picture,width,height,message){
var html = new Array();
html[0] = "<html><head><style type=\"text/css\"><!--\n";
html[1] = "body{margin:0}\n.txt{font-size:10pt}";
html[2] = "--></style></head>\n";
html[3] = "<body marginwidth=0 marginheight=0 class=txt>\n"
html[4] = "<img src=\"";
html[5] = picture;
html[6] = "\"><BR Clear=all><div class=txt>";
html[7] = message;
html[8] = "</div></body></html>"
var windowsize;
windowsize = "width="+width+",height="+height;
newWindow = window.open('','',windowsize+",scrollbars=no");
newWindow.document.open();
newWindow.document.write(html.join(""));
newWindow.document.close();
}
-->