function setfocus() {
	if (document.getElementById('myForm').lastname) {
		document.getElementById('myForm').lastname.focus(); 
	}
	else {
		document.getElementById('myForm').q.focus();
	}
}