One more remark. Note above: IE uses cached image. If your image is all the time the same, then simply try not to use AJAX for it. If your image is created during mypage.php, then you will have a problem with cache, the trick
"?x="+new Date().getTime()
will not work for images. In this case you must change name of your image in every consecutive GET. For example in mypage.php:
$imageName='myPrefix' . $_GET['x'] . '.png'; // unique name
deleteFilesFromIMGDirector
y() ; // otherwise it will grow and grow...
createImage($imageName);
....
echo "

";