<!--
function CheckForm()
{
        if (document.uForm.subject.value=="") {
			alert("You Need to enter information in title!");
            document.uForm.subject.focus();
			return false;
        }
		else if (document.uForm.writer.value=="") {
			alert("You Need to enter information in name!");
			document.uForm.writer.focus();
			return false;
        } 
        else if (document.uForm.content.value=="") {
			alert("You Need to enter information in content!");
            document.uForm.content.focus();
			return false;
        }  
		else if (document.uForm.passwd.value=="") {
			alert("You Need to enter information in password!");
	        document.uForm.passwd.focus();
			return false;
		}     
		document.uForm.submit();
}

//-->
