function createaccount() {
    validateform();
    if (hasError != true) {
	   document.createaccountform.submit();	
	}
}

function init() {
	document.getElementById("loginemailfield").focus();
}

function createlogin() {
	document.login.submit();
}

