<!--

function iletisimFormDenetle(){
  if (document.getElementById('ad').value == "") {alert('Lütfen isminizi yazınız.');document.getElementById('ad').focus();return false;}
  else if (document.getElementById('mail').value == "") {alert('Lütfen e-posta adresinizi yazınız.');document.getElementById('mail').focus();return false;}
	else if (document.getElementById('mesaj').value == ""){alert('Lütfen mesajınızı yazınız.');document.getElementById('mesaj').focus();return false;}
	else {return true;}
}

function popUp(url, width, height) {
	topp = (screen.height - height) / 2
	leftt = (screen.width - width) / 2
	window.open(url, 'popUps', 'toolbar=0, scrollbars=1, width=' + width + ', height=' + height + ', resizable=0, top=' + topp + ', left=' + leftt + '');
}

//-->