function textLimit(field, maxlen) {
if (field.value.length > maxlen + 1)
alert('Only 500 Char are allowed. Your input has been truncated!');
if (field.value.length > maxlen)
field.value = field.value.substring(0, maxlen);
}

function Check_ModReg() {
if(document.ModReg.title.value == "" ) {
alert("Kindly enter the title of the news.");
document.ModReg.title.focus();
return false;
}
else if(document.ModReg.description.value == "" ) {
alert("Kindly enter the detail description of the news.");
document.ModReg.description.focus();
return false;
}
if (!document.ModReg.terms.checked) {
	alert("You must agree to the Terms and Conditions to get your news posted at our site.");
	document.ModReg.terms.focus();
	return false;
}
return true;
}


