
	function toggleColor(objElement){
	  if (objElement.className=='fieldtxtgray'){
		objElement.className='fieldtxtgrayfocus';
	  }else{
		objElement.className='fieldtxtgray';
	  }
	}
