function exitiframe(self)
{
	if (self != top) top.location = self.location;
}

function validate( form ){



  if ( form.contact.value.length < 1 ) {

    alert( "Please enter an email address or phone number so that we can get back to you with a response to your question." );

    return false;

  }

  if ( form.message.value.length < 1 ) {

    alert( "Please enter a message or question.  Our team is pleased to help." );

    return false;

  }

  return true;

}
