<!--
function LiityPoistu(theform) {
	if (theform.poistu.checked==true) {
		theform.submit.value='Poistu »';
	} else {
		theform.submit.value='Liity »';
	}
}
form_submitted=false

function ValidateEmail(theinput) {
	s=theinput.value
	if(s.search) {
		return (s.search(new RegExp("^([a-z0-9_]|\-|\\.)+@(([a-z0-9_]|\-)+\\.)+[a-z]{2,4}$","gi"))>=0)
	}
	if(s.indexOf) {
		at_character=s.indexOf('@')
		if(at_character<=0 || at_character+4>s.length)
			return false
	}
	if(s.length<6)
		return false
	else
		return true
}

function check_postlist(theForm) {
	if(theForm.Lista_ID.value=='none') {
		alert('Valitse postituslista.')
		theForm.Lista_ID.focus()
		form_submitted=false
		return false
	}
}

function checkForm(theform) {
	if(theform.nimi.value=='' && theform.poistu.checked==false) {
		alert('Ole hyvä anna nimesi.')
		theform.nimi.focus()
		form_submitted=false
		return false
	}
	if(ValidateEmail(theform.email)==false) {
		alert('Sähköposti-osoitteesi vaikuttaa väärältä.')
		theform.email.focus()
		form_submitted=false
		return false
	}
}



function PageLoad(theForm_element) {
  theForm_element.focus()
}


// *********************************************************************************************************
//-->
