function SetImage(vsID, vsURL)
{
	// Sets the image whose ID matches the one passed in to the URL
	// Ensure that the browser supports the DOM
	if (document.getElementById)
	{
		// Ensure we can access the image
		if (document.getElementById(vsID))
		{
			// We can do the swap
			document.getElementById(vsID).src = vsURL;
		}
	}
}