function showImagePopup( myurl, width, height )
{
  width += 20;
  height += 20;
  var imageWindow = window.open( myurl, "ImagePopup", "width="+width+",height="+height+",menubar=0,resizable=0,scrollbars=0", true );
  imageWindow.focus();
}

