<!--
if (self!=top){top.location=self.location;}
function check()
{
	 if(checkspace(document.myform.name.value)) {
	document.myform.name.focus();
	alert("ΗλΚδΘλΥΚΊΕ£‘");
	return false;
  }
  if(document.myform.name.value.length < 6 || document.myform.name.value.length > 30) {
	document.myform.name.focus();
	alert("ΥΚΊΕΚδΘλ΄νΞσ£‘");
	return false;
  }
	 if(checkspace(document.myform.pwd.value)) {
	document.myform.pwd.focus();
	alert("ΗλΚδΘλΓάΒλ£‘");
	return false;
  }
  if(document.myform.pwd.value.length < 6 || document.myform.pwd.value.length > 30) {
	document.myform.pwd.focus();
	alert("ΚδΘλΓάΒλ΄νΞσ£‘");
	return false;
  }		 
  if(checkspace(document.myform.code.value)) {
	document.myform.code.focus();
	alert("ΗλΚδΘλΡιΦ€Βλ£‘");
	return false;
  }	
}
function checkspace(checkstr) {
  var str = '';
  for(i = 0; i < checkstr.length; i++) {
	str = str + ' ';
  }
  return (str == checkstr);
}
//-->
