function commentFocus() {
	if (!document.getElementById("comment_text")) return false;
    var commentText = document.getElementById("comment_text");
    var top = document.getElementById("top");
    input = top.getElementsByTagName("input")[0];
    commentText.onclick = function() {
        input.focus();
        return false;
    }
}

window.onload = function() {
    commentFocus();
}
