function checkForm()
{
	sosyal = document.randform.sosyal.value;
	adi = document.randform.adi.value;
	soyadi = document.randform.soyadi.value;
	mail = document.randform.mail.value;
	ttarih = document.randform.ttarih.value;
	tsaat = document.randform.tsaat.value;
	ceptel = document.randform.ceptel.value;
	if(!(sosyal) || !(adi) || !(soyadi) || !(mail) || !(ttarih) || !(tsaat) || !(ceptel))
	{
		alert("Lütfen tüm zorunlu alanları doldurunuz!");
		return false;
	}
	return true;
}