// JavaScript Document - Vegetarian Society of South Australia Inc

function doTopBorder(id) {
  document.getElementById(id).style.marginTop="0px";
  document.getElementById(id).style.borderTop="#ffff00 solid 3px";
}

function removeB(id) {
  document.getElementById(id).style.borderTop="none";
  document.getElementById(id).style.marginTop="3px";
}

function showMessage() {
  alert("The application form is not available on-line at this time.\nPlease contact the society.");
}
