//
// JavaScript for products-freehand-demonstration
//

<!--- hide script from old browsers

function FValidateControl(control, displayName) {
  if (control.value=="") {
    alert("You must enter " + displayName + " to use the online Freehand Demonstration")
    control.focus()
    return false 
	}
  return true
}

function FSubmitValidation(form) {
	if (!FValidateControl(form.username, "User Id")) return false
	if (!FValidateControl(form.password, "Password")) return false
  return true 
}

// end hiding from old browsers -->

