// Javascript validation for Resource Comments

<!--
function check(form){
	var isGood = true;
	var alertStr = "";
		
		if (form.NAME.value.length == 0) {
			isGood = false;
			alertStr += "You must enter your name.\n";
		}

		if (form.email_from.value.length == 0) {
			isGood = false;
			alertStr += "You must enter an Email.\n";
		}
		
		if (form.WorkArea.value.length == 0) {
			isGood = false;
			alertStr += "You must select a Work area.\n";
		}
		
		if (form.COMMENT.value.length > 4096) {
			isGood = false;
			alertStr += "Comment can be no longer than 4096 characters (" + form.STR_COMMENT.value.length + ").\n";
		}
		
		
		
	if( !isGood ){
		alert(alertStr);
	}
	return isGood;

	}
	
//-->
