	function checkPersonalInfo()
	{
		if(document.tietoform.nimi.value.length<4)
		{
            window.alert("Syötä nimesi.");
            document.tietoform.nimi.focus();
			return;
		}
		if(document.tietoform.email.value.length<4)
		{
            window.alert("Syötä sähköpostiosoitteesi.");
            document.tietoform.email.focus();
			return;
		}
		if(document.tietoform.puhnum.value.length<4)
		{
            window.alert("Syötä puhelinnumerosi.");
            document.tietoform.puhnum.focus();
			return;
		}
		if(document.tietoform.comment.value.length<4)
		{
            window.alert("Syötä osoitteesi.");
            document.tietoform.comment.focus();
			return;
		}
		document.tietoform.submit();
	}

	function checkRegisterInfo()
	{
		if(document.tietoform.userName.value.length<3)
		{
            window.alert("Syötä käyttäjänimi.");
            document.tietoform.userName.focus();
			return;
		}
		if(document.tietoform.realName.value.length<6)
		{
            window.alert("Syötä nimesi.");
            document.tietoform.realName.focus();
			return;
		}
		if(document.tietoform.eMail.value.length<4)
		{
            window.alert("Syötä sähköpostiosoitteesi.");
            document.tietoform.eMail.focus();
			return;
		}
		if(document.tietoform.passWord.value.length<4)
		{
            window.alert("Syötä salasana.");
            document.tietoform.passWord.focus();
			return;
		}
		document.tietoform.submit();
	}