<!--
function checkForm()
{
  var f= document.SMSForm;

  if( f.writer.value.length < 1 ){
	alert('Input the writer.');
	f.writer.focus();
	return false;
  }

  if( f.passwd.value.length < 1 ){
	alert('Input the password');
	f.passwd.focus();
	return false;
  }

  if( f.subject.value.length < 1 ){
	alert('Input the subject');
	f.subject.focus();
	return false;
  }

  if( f.content.value.length < 2 ){
	alert('Input the contents.');
	f.content.focus();
	return false;
  }
}

//-->