/*
 Profile `de Fietsspecialist`
 Plugins Javascript
 09-05-2007 i-Aspect B.V.
*/
   function Plugin_Poll() {
      var opt = {
          method: 'post',
          postBody: FormToString(),
          onSuccess: function(t) {
              response_element.innerHTML = t.responseText;
          },
          on404: function(t) {
              alert('Error 404: location "' + t.statusText + '" was not found.');
          },
          onFailure: function(t) {
              alert('Error ' + t.status + ' -- ' + t.statusText);
          }
      }
   }