function onay()	{
	
	if ($('txtunvan').value=="")	{
		alert ("Unvanınızı girmediniz.\n\nPlease write your title.");
		$('txtunvan').focus();
		return false;	}

	if ($('txtadsoyad').value=="")	{
		alert ("Adınızı ve soyadınızı girmediniz.\n\nPlease write your name and surname.");
		$('txtadsoyad').focus();
		return false;	}

	if (!isEmail($('txteposta').value))	{
		alert ("E-posta adresinizi kontrol ediniz.\n\nPlease check your e-mail address.");
		$('txteposta').focus();
		return false;	}
	
	if ($('txtsehir').value=="")	{
		alert ("Şehir bilgisini girmediniz.\n\nPlease write your city.");
		$('txtsehir').focus();
		return false;	}

	if ($('mail_kod').value=="")	{
		alert ("Doğrulama kodunu giriniz.\n\nPlease write the correction code.");
		$('mail_kod').focus();
		return false;	}
}

function isEmail(string) {
	if (string.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) != -1)
		return true;
	else
		return false;	}
		
function $(id) {
	return document.getElementById(id);
}
