window.onload = function() {
	contactFocus();
}

function contactFocus() {
	
	if(!document.getElementById("name")) {
		return;
	}
	
	var name = document.getElementById("name");
	name.focus();
	
}
