<!-- //
	
function checkInput(objElement,objAction)
	{
	var defaultValue = objElement.getAttribute('defaultValue');
   	if ((objElement.value == '' ) && (objAction=='check')) 
   		{
   		objElement.style.color = "#b3b3b3";
   	   objElement.value= defaultValue;
   	   };
   	
  		if ((objElement.value == defaultValue) && (objAction=='clear'))
   		{
   	   objElement.value='';
   	   objElement.style.color = "#000";
   	   };
   	
   };	   
   
   
//  -->
