function is_checked()
{
  if (!(document.getElementById('check').checked))
  {
    alert("You must agree to the Terms Of Service!");
    return false;
  }
  else if (!(document.getElementById('upfile').value))
  {
    alert("You must select a file to upload first!");
    return false;
  }
  
  return true;
}
