
function ValidateForm(form)
{
        open("instruct.htm","r_frame");
}
function uf_autofill(theField)
{
	if (theField.value.length < 1)
	{
		if (theField.name=="userid")
		{
			theField.value="janedoe";
		}		
		else if (theField.name=="pin")
		{
			theField.value="********";
		}
	}
	return
}
//-->
