<!--
function email(user) {
  locationstring = "mailto:" + user + "@ikivo.com"; window.location = locationstring; 
} 

function email2(user, domain) {
  locationstring = "mailto:" + user + "@" + domain; window.location = locationstring; 
} 

function checkform() {
  if (document.FormName.taQuestion.value == '')
  {
    alert('You have to fill in a question');
    return false;
  }
  else if (document.FormName.tName.value == '')
  {
    alert('You have to fill in your name');
    return false;
  }
  else if (document.FormName.tAnimatorVersion.value == '')
  {
    alert('Fill in your Animator Version');
    return false;
  }
  else if (document.FormName.tEmail.value == '')
  {
    alert('Fill in a valid email adress');
    return false;
  }
  else if (document.FormName.tLicenseID.value == '')
  {
    alert('You have to fill in your License ID and password');
    return false;
  }

  return true;
}

//--> 