

function checkIfSubmitable__createLink() {
  var message = 'You must enter your site name before you may continue.';
  if(isBlank(document.the_form_name__link_info.name.value)) { alert(message); return false; }
  var message = 'You must enter a URL for your site before you may continue.';
  if(isBlank(document.the_form_name__link_info.url.value)) { alert(message); return false; }
  if(document.the_form_name__link_info.url.value == 'http://') { alert(message); return false; }
  ajaxSubmit('POST', '/linkmanagement/oddsandends.php', true, ajaxFormatURL('the_form_name__link_info'));
  return false;
}

