function pimg() {
  return false;
}

function pimg_orig(top,left,width,height,imgurl) {
  var body = document.getElementsByTagName('body')[0];

  var div = document.createElement('div');
  div.style.position = 'absolute';
  div.style.top = top+'px';
  div.style.left = left+'px';
  div.style.width=width+'px';
  div.style.height=height+'px';
  div.style.border='2px ridge #333';
  div.style.zIndex=10;
  div.style.backgroundImage='url('+imgurl+')';

  var button = document.createElement('div');
  button.style.position="absolute";
  button.style.top='500px';
  button.style.left='440px';
  button.style.width='129px';
  button.style.height='36px';
  button.style.cursor='pointer';
  button.style.zIndex=10;
  if (button.filters) {
    buton.style.filter='progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=\'image\',src=\'closewindow.png\')';
  } else {
    button.style.backgroundImage='url(../images/closewindow.png)';
  }
  button.onmouseup=function(e) {
    body.removeChild(button);
    body.removeChild(div);
    document.onmousedown=null;
    if (window.event) {
      window.event.cancelBubble=true;
    } else {
      if (e.preventDefault) e.preventDefault();
      if (e.stopPropagation) e.stopPropagation();
    }
    return false;
  };

  body.appendChild(div);
  body.appendChild(button);

}
