function picked(idx, fullname){
nw = window.open('', 'newWin','menubar=no,toolbar=no,resizable=yes,scrollbars=yes')
nw.document.write ("<html><head><title>", fullname, " </title><script type='text/javascript'>function closefunction(){close()}</script></head>")
nw.document.write ("<body bgcolor=#66ff33>")
nw.document.write ("<table width=50% border=10 align=center bordercolor=#ff0000 bgcolor=#66cc33>" + 
"<tr><td align=center style='padding:2pt 2pt 2pt 2pt'><img src=" + idx + ".jpg></td></tr>" + 
"<tr><td align=center>" + fullname + "</td></tr></table>")
nw.document.write ("<p align=center>" +
                   "<input type='button' style='font-family:times'" + 
                   "onclick='closefunction()'" + 
                   "value='Close'>" +
                   "</p>")
nw.document.write ("</body></html>")
nw.document.close()
				 return "";
}

