Event.observe(window, 'load', hideFields);

function hideFields() {
  if((/calendar\/view_event/).test(window.location)) {
    var dummy = "info@belleplainenursery.com";
    fields = ["txtTitle", "txtOrganization", "txtAddress", "txtCity", "txtState",
      "txtZip", "txtCountry", "txtEmail", "txtPhone", "txtFax", "txtComment"];
    $$('label').each(function(label) {
      if(!(label.innerHTML.match("First")||
           label.innerHTML.match("Last"))) {
        label.update("");
      }
    });
    fields.each(function(field) {
      if($(field)) {
        $(field).value = dummy;
        $(field).hide();
      }
    });
    $$('td').each(function(td) {
      if(td.innerHTML == dummy) {
        td.hide();
      }
    });    
  }
}

