function swapCarImgBack(imageID) 
{ 
	var img = document.getElementById(imageID);
	if (img != null && img.oSrc)
	{
	   img.src = img.oSrc;
	}
}

function swapCarImage(imageID, imageURL)
{
	var img = document.getElementById(imageID);
	if (img != null)
	{
	   if(! img.oSrc) 
	      img.oSrc = img.src; 
	   img.src = imageURL;
	}
}

