	<!--hide from javaless browsers
	
	// -----------------------------------------------------------------
	// Function    : IsFormComplete
	// Language    : JavaScript
	// Description : Checks if all elements in a form have a non-blank value
	// Copyright   : (c) 1998 Shawn Dorman
	// http://www.goodnet.com/~sdorman/web/IsFormComplete.html
	// -----------------------------------------------------------------
	// Ver    Date    Description of modification
	// --- ---------- --------------------------------------------------
	// 1.0 08/31/1996 Original write
	// 1.1 09/30/1998 CHG: Use standard header format
	// -----------------------------------------------------------------
	
	function SubmitForm(FormName)
	{
	   var FormOk = IsFormComplete(FormName)
	
	   if (FormOk == true)
	   {
	      document.forms[FormName].submit();
	   }
	   return true;
	}
	
	function IsFormComplete(FormName)
	{
	var x       = 0
	var FormOk  = true
	
	while ((x < document.forms[FormName].elements.length) && (FormOk))
	   {
	     if (document.forms[FormName].elements[x].value == '')
	     { 
	        alert('We need more information! Click OK to go to the required field.')
	        document.forms[FormName].elements[x].focus()
	        FormOk = false 
	     }
	     x ++
	   }
	return FormOk
	IsFormComplete = FormOk
	}
	//end
	//-->

