

function HedefBul(Hedef)
{
	if(document.getElementById) 
	{
		return document.getElementById(Hedef);
	}
}

function submitform()
{
  
}


function checkFormContact() {
		Hata = '';	
		
		contact = document.getElementById('contact');
		
		if (contact.Name.value == '') {
			Hata += 'Name.\n\r';
		}
		if (contact.Phone.value == '') {
			Hata += 'Phone.\n\r';
		}
		if (contact.Comment.value == '') {
			Hata += 'Comment.\n\r';
		}
		if (contact.Email.value.indexOf(".") <= 2 || contact.Email.value.indexOf("@") <= 0) {
			Hata += 'E-mail.\n\r';
		}
		
		if (Hata != '') {
			alert('Form işlemi gerçekleştirilirken aşağıdaki hata(lar) oluştu! \n\r------------------------------------------------------------------------------\n\r\n\r' + Hata);
			return false;
		} else {
		document.contact.submit();
		}
	}


function GetImage(Hedef, Resim){

	 document.getElementById(Hedef).src = Resim ;
 }
 
 
 function flashYaz(v)
{
	document.write(v);
}

function OpenSpe(Gelen) {
	var cObj = document.getElementById(Gelen).style.display;
	
	if(cObj == 'none')
		{
			document.getElementById(Gelen).style.display = '';
		} else {
			document.getElementById(Gelen).style.display = 'none';
		}
}