<!--
function pla_Validator(theForm,name)
// check if pla field is blank
{	
	var form_pla = theForm.text1.value;
	//var form_name = theForm.text1.value;
//	var form_name1 = theForm.text2.value;
	var invalidChars = " `/:;,@'*#%+-=()<>!~\.&abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
//	var invalidChars1 = " /:;,@'*#+-%=()<>!~\.&1234567890"
	var badChar =""
	if (form_pla== "")
	{
	alert("You must enter your "+name);
	 return (false);
	}
	for (i = 0;  i < invalidChars.length;  i++)
	{
	badChar=invalidChars.charAt(i);
	if(form_pla.indexOf(badChar,0)>-1)
	{
	alert("Enter Only Numeric Data from 0-9");
	theForm.text1.focus();
	return (false);
	}
	}
	// check to see if the field is blank
	if (theForm.ab.value == "")
	{
	alert("Enter a valid scheme name.");
	theForm.ab.focus();
	return (false);
	}
	

	}
//-->

   

