function limit(form){
	if (form.comments.value.length > 1500){
		alert("Please limit your input to 1500 characters or less");
		return false;
	}
	return true;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}
