function ForceFieldStyle(FieldID)
{
	document.getElementById('ClientName').style.backgroundColor = '#ffffff'; 
	document.getElementById('ClientName').style.borderColor = '#7f9db9';
}
function toProperCase(s)
{
  return s.toLowerCase().replace(/^(.)|\s(.)/g, 
          function($1) { return $1.toUpperCase(); });
}