
function ValidateForm(form)
{
        open("instruct.htm","r_frame");
}
function uf_autofill(theField)
{
	if (theField.value.length < 1)
	{
		if (theField.name=="ssn")
		{
			theField.value="123-45-6789";
		}		
		else if (theField.name=="last_name")
		{
			theField.value="Doe";
		}
		if (theField.name=="id")
		{
			theField.value="99887766554";
		}
		if (theField.name=="first_name")
		{
			theField.value="Jane";
		}
		if (theField.name=="birth_date")
		{
			theField.value="03081980";
		}
		if (theField.name=="student")
		{
			theField.value="123-64-7890";
		}
		if (theField.name=="completessn")
		{
			theField.value="987-65-4321";
		}
		if (theField.name=="openssn")
		{
			theField.value="987-65-4321";
		}
	}
	return
}
//-->
