<!--

  var tgt = null;
  function saveImageAs (url) {
       if (!document.execCommand) {
           alert('Sorry.Your browser doesn\'t support this action.'); return;
     }
       tgt = document.frames['dummy'];
       tgt.location = url;
       setTimeout('tgt.document.execCommand("SaveAs")', 500);
  }

//-->