Hi
I assume you are just using javascript to set the src of an image to a picture on your server, along the lines of:
Code:
document.getElementById('myimage').src = 'images/' + dateEntered + '.jpg';
If you want to show the image from another site, you simply need to put the full url when you set the src:
Code:
document.getElementById('myimage').src = 'http://www.anothersite.com/images/' + dateEntered + '.jpg';
Phil