imagename = '';
function img_popup(imgnme) {
    lrgewin = window.open("about:blank","","height=200,width=400")
    imagename = imgnme;
    setTimeout('update()',500)
}

function update() {
    doc = lrgewin.document;
    doc.open('text/html');
    doc.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n');
    doc.write('<html>\n<head>\n<title>Johnny Steiner<\/title>\n<link rel="stylesheet" type="text/css" href="/css/site.css" />\n<\/head>\n<body onLoad="if (self.resizeTo)self.resizeTo((document.images[0].width+20),(document.images[0].height+60))">\n');
    doc.write('<a href="#" onClick="window.close()"><img style="margin: auto;" border="0" src="' + imagename + '"  /></a>\n');

    doc.write('<\/body><\/html>');
    doc.close();
}

