function getImage(pExistingImageID, pImageURL){
	var img = document.createElement('img');
	img.onload = function (evt) {
		document.getElementById(pExistingImageID).src=this.src;
		document.getElementById(pExistingImageID).width=this.width;
		document.getElementById(pExistingImageID).height=this.height;
	}
	img.src = pImageURL;
	return false;
}
