var language;

function initCF(){
	$('submit').onclick = validate;
}

function validate(){
	if($('fullname').value == "" || $('email').value == "" || $('message').value == ""){
		if(language == "TR"){
			alert("Ad, soyadı, e-posta ve adres bilgileri doldurulmalıdır.");
		}else if(language == "EN"){
			alert("Please fill in the name, surname and address fields.");
		}
		return false;
	}
	
}

addLoadEvent(initCF);
