function checkdata(alertword)
{
	var Regcontent = /\S/;
	var alertword	= alertword;
	if (!Regcontent.test(document.resform.word.value))
	{
		alert(alertword);
		document.resform.word.focus();
		return false;
	}
}