
function focusForm()
{
	if (document.contactform.length)
	{
		document.contactform.name.focus();
	}
}

window.onload = focusForm;
