function CheckInputValues( )
{
  if (!document.FORM1['F_Name'].value.length)
  {
     alert("You must your first name!");
     return false;
  }

  if (!document.FORM1['L_Name'].value.length)
  {
     alert("You must your last name!");
     return false;
  }

  if (!document.FORM1['Company'].value.length)
  {
     alert("You must specify the company you work for!");
     return false;
  }

  if (!document.FORM1['Position'].value.length)
  {
     alert("You must specify the position you hold!");
     return false;
  }

  if (!document.FORM1['Email'].value.length)
  {
     alert("You must specify your email address!");
     return false;
  }
  
  return true;
}

function SendRequest()
{
	if(!CheckInputValues())
		return false;
	
	document.FORM1.FUNCTION.value = 1;
	document.FORM1.submit();

	return true;
}