/* set the focus to the comments input of the form mailForm  */
function setFocus() {
	document.forms['mailForm'].message.focus();
}

window.onload = setFocus;

