function setFocus(){
	document.comment_txt_box.comment_txt.focus();
}

function commentExceedsMaxLength(msg){
	if(document.comment_txt_box.comment_txt.value.length > 1000){
		alert(msg);
		return true;
	}
	
	return false;
}
