function validater(){
if (document.pp.emailcnt.value.indexOf("@")==-1||document.pp.emailcnt.value.indexOf(".")==-1){
			alert ("Email?");
			document.pp.emailcnt.focus();
			document.pp.emailcnt.select();
			return false;
}
if (document.pp.mesajcnt.value==""){
			alert ("Mesaj?");
			document.pp.mesajcnt.focus();
			return false;
}


 return true;

}