event.addEvent(window, 'load', setCommentFormAction);

function setCommentFormAction() {
	
	var form = document.getElementById("commentForm");
	
	form.setAttribute("action", "comments/insert");
	
}
