function ImageSwap(ImageID, ImageURL)
{
	var Holder = document.getElementById(ImageID);
	Holder.src = ImageURL;

	return 0;
}
