//ALL credit goes to Spigumus for this one
//Minor changes made to suit my own interests
<!-- Load Image script, written by spigumus. -->
function loadImage(image, myW, myH){
var winW = parseInt(myW) + 22;
var winH = parseInt(myH) + 22;
imageWindow = open("","Image","width=" +winW+ ",height=" +winH+ ", scrollbars=yes, resizeable=yes");
imageWindow.document.open();
imageWindow.document.write("<html><head><title>Creation</title>");
imageWindow.document.write("<style>img{border: 1px solid #fff;}");
imageWindow.document.write("body{margin: 0px auto; padding: 10px; background-color: #000;}<\/style>");
imageWindow.document.write("</head><body><a href=\"javascript:self.close()\"><img src=\"http://www.unflap.com/archives/creations/"+image+"\" alt=\"\"<\/a>");
imageWindow.document.write("</body>");
imageWindow.document.close(); 
}