<!--
function check()
{
  if( document.cpwd.a.value.length == 0 ) {
  	alert( "Please enter your UserID.\n" );
	return false;
  }
  if( document.cpwd.b.options.value == 0 ) {
    alert( "Please select the team code.\n" );
    return false;
  }
  if( document.cpwd.c.value.length == 0 ) {
  	alert( "Please enter your password.\n" );
	return false;
  }
  if( document.cpwd.c1.value.length == 0 ) {
  	alert( "Please enter your new password.\n" );
	return false;
  }
  if( document.cpwd.c2.value.length == 0 ) {
  	alert( "Please confirm your new password.\n" );
	return false;
  }
  if ( document.cpwd.c1.value.length > 6 ) {
  alert( "Incorrect new password format.\n");
  return false;
  }
  if ( document.cpwd.c2.value.length > 6 ) {
  alert( "Incorrect confirm password format.\n");
  return false;
  }
}

//-->
