﻿function Check()
  {
		if (thisForm.Domain.value=="")
  	{
    		alert("域名不能为空,请输域名!！");
    		thisForm.Domain.focus();
    		return false;
   	}
		if (thisForm.Password.value=="")
  	{
    		alert("密码不能为空,请输密码!！");
    		thisForm.Password.focus();
    		return false;
   	}   	  
		if (thisForm.Scode.value=="")
  	{
    		alert("验证码不能为空,请输验证码!！");
    		thisForm.Scode.focus();
    		return false;
   	}   	 	
  }

