function sxowImg(imgpath, title) {
  nwin = window.open(imgpath, "img", "toolbar=no");
  var c = "<html><head><title>LogoAngels | " + title + "</title><script>function rsiz() {w = document.images[0].width + 10;h = document.images[0].height + 49;window.resizeTo(w, h);}</script></head><body onload='rsiz(); window.focus()' onresize='rsiz()' style='text-align:center;padding:0px;margin:0px;'><a href='javascript:window.close()'><img src='" + imgpath + "' border='0'></a></body></html>";
  nwin.document.write(c);
}

function showImg(imgpath, title) {
  var nwindow = null;
  var leftpos = (screen.availWidth)/2-250;
  var toppos = (screen.availHeight)/2-325;
  nwindow=window.open("","img"+title+"","toolbar=no,scrollbars=yes,width=500,height=516,top="+toppos+",left="+leftpos+"");
  nwindow.document.write("<html><head><TITLE>LogoAngels | "+title+"</title></head><body bgcolor=#EDEDED topmargin=0 rightmargin=0 leftmargin=0 marginwidth=0 marginheight=0 style='text-align:center;'><a href='javascript:window.close();'><img src=\""+imgpath+"\" alt=\""+title+"\" border=0></a></body></html>");
  nwindow.document.close();
}

