function verifCtt(){
	var cpt = 0;
	if (document.getElementById('adr_mail').value.length<8) cpt++;
	if (document.getElementById('message').value.length<8) cpt++;
	if (cpt>0){
		alert("Message and email address are requieries");
		return false;
	}
	return true;
}

function messOK(){
	alert("Thank you for your message");
	window.location.href = "/";
}

function chPrjt(prjt){
	window.location.href = "?part=experiences&project=" + prjt;
}

function chOrd(ord){
	window.location.href = "?part=websites&order=" + ord;
}

