<!--

/**
* reloadImage function to reload the verification code image
* Written by Martyn Kilbryde
*/
function reloadImage()
{
	// Create a new Date object
	theDate = new Date();

	// Refresh the image src to the image_car.asp "image", with the time on the end to force a refresh
	document["ver_code"].src = "/images/imgver/image_ver.asp?" + theDate.getTime();
}

//-->