// JavaScript Document

function imajYukle(img,divID){
	tempDiv = document.createElement('DIV');
	tempDiv.id = divID;
	tempDiv.style.position = 'absolute';
	tempDiv.style.display = "none";
	tempDiv.style.left = -150 + "px";
	tempDiv.style.top = -150 + "px";
	//tempDiv.style.z-index = divID*2;
	tempDiv.innerHTML = "<img src=\""+img+"\" />";
	document.body.appendChild(tempDiv);
}


//eposta doğrulama///////////////////////////
function isEmail(str){
var re = /^[^\s()<>@,;:\/]+@\w[\w\.-]+\.[a-z]{2,}$/i
return re.test(str);
}
//eposta doğrulama/////////////////////////////

//İletişim Formu Denetle
function iletisimFormDenetle(){
    if (document.getElementById('isim').value == "") {alert('Dikkat!!!\n\nLütfen isminizi yazınız...');document.getElementById('isim').focus();return false;}
    else if (document.getElementById('mail').value == "") {alert('Dikkat!!!\n\nLütfen e-posta adresinizi yazınız...');document.getElementById('mail').focus();return false;}
    else if(!isEmail(document.getElementById('mail').value)){alert('Dikkat!!!\n\nE-Posta adresiniz doğru görünmemektedir. Lütfen kontrol ediniz.');document.getElementById('mail').focus();return false;}
	else if (document.getElementById('mesaj').value == ""){alert('Dikkat!!!\n\nLütfen mesajınızı yazınız...');document.getElementById('mesaj').focus();return false;}
	else {return true;}
}

//-----------------------------------------------------------



