function GenerateMD5(id)
{
	var theControl = document.getElementById(id);
		if(theControl)
	{																
		if(theControl.value != '')
		{
			theControl.value = calcMD5(theControl.value);
		}
	}
}
