function MM_openBrWindow_editted(theImage,winName,features,theColor) { //v2.0
  newPopup = window.open('',winName,features);
  newPopup.document.write('<html><head><title>MarvynDT</title><style>body{margin:0px;background-color:'+theColor+'}</style></head><body>');
  newPopup.document.write('<img src='+theImage+' />');
  newPopup.document.write('</body><html>');
  newPopup.document.close();
}