function showSet(imgloc)
{
myWindow=window.open('','','width=550,height=700');
myWindow.document.write("<html>\n");
myWindow.document.write("<head>\n");
myWindow.document.write("<title>Complete Collection</title>\n");
myWindow.document.write("</head>\n");
myWindow.document.write("<body topmargin=\"0\">\n");
myWindow.document.write("<img src=\""+imgloc+"\">\n");
myWindow.document.write("</body>\n");
myWindow.document.write("</html>\n");
myWindow.focus();
}

