// Javascript validation for Positions Vacant

<!--
function check(form){
	var isGood = true;
	var alertStr = "";
		

		if (form.DESCRIPTION.value.length > 2048) {
			isGood = false;
			alertStr += "Description can be no longer than 2048 characters (" + form.DESCRIPTION.value.length + ").\n";
		}
		
		if(form.DAY.value == ""){
			isGood = false
			alertStr += "Please enter a closing day\n";
		}
		
		
	if( !isGood ){
		alert(alertStr);
	}
	return isGood;

	}
	
//-->
