function check(fm){
	fm.submit();
}
function key_press(fm,event){
	if(event.keyCode == 13){
		check(fm);
	}
}
function mailFocus(){
	document.getElementById('mailaddress').focus();
}
onload = mailFocus;