<!--
function openImgWin(imgObj){
    var windowNote = window.open('','Note','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no, width=' + (imgObj.width+20) + ',height='+ (imgObj.height+20));
    text = '<html><head><title>Picture viewer</title></head><body bgcolor="#666666">';
    text += '<center>';
    text += '<img src="' + imgObj.src + '"></CENTER>';
    text += '</body></html>';
    windowNote.document.write(text);
    windowNote.focus();
    windowNote.document.close();
}

function bildvisare(message) {
  var theImg = new Image();
  theImg.src = message;
  if(!theImg.complete)
    theImg.onload=function(){ openImgWin(this); }
  else
    openImgWin(theImg);

  return false;
}

//-->