/**************************************************************************************
This function's purpose is to insure the value of an input tag does not contain ';

 Name:       Valid_Char(obj)
 Input:      obj - source field
 Returns:    nothing
 Notes:
 Mod history:
**************************************************************************************/



function Valid_Char(obj)
		{
		   var string = obj.value;
		   	   if (string .indexOf(";") != -1)
					{
					alert("Please remove all semicolons [ ; ]  to proceed.");
//					obj.value = '';
					obj.focus();
					return false;					
					}
				else
					return true;
		}
		
		
		
		

function CheckforString(obj, str)
		{
		   var string = obj.value;
		   	   if (string .indexOf(str) != -1)
					{
					alert("Please remove all [ "+ str +" ] references to proceed.");
//					obj.value = '';
					obj.focus();
					return false;					
					}
				else
					return true;
		}
		