function eliste(theForm)
{
	if(theForm.adsoyad.value == ""  ) {
		 alert("Please print your name and your last name is.");
		 theForm.adsoyad.focus();
		 return(false);
	}
	
	if(theForm.adsoyad.value == "Name Surname"  ) {
		 alert("Please print your name and your last name is.");
		 theForm.adsoyad.focus();
		 return(false);
	}
	
	if(theForm.mail.value == "E-Mail Address"  ) {
		 alert("Please print your E-Mail Address.");
		 theForm.mail.focus();
		 return(false);
	}
	
	 if((theForm.mail.value != "") && (theForm.mail.value.indexOf ("@",0) == -1 ||  theForm.mail.value.indexOf (".",0) == -1)) {
		 alert("Please print your E-Mail Address.");
		 theForm.mail.focus();
		 return(false);
	}
	
	return (true);
}

function searching(theForm)
{
	if(theForm.word.value == ""  ) {
		 alert("Please call to Print Your Words.");
		 theForm.word.focus();
		 return(false);
	}
	
	if(theForm.word.value == "Search Keyword"  ) {
		 alert("Please call to Print Your Words.");
		 theForm.word.focus();
		 return(false);
	}
	
	return (true);
}

function sil(thisfield, defaulttext) {
if (thisfield.value == defaulttext) {
thisfield.value = "";
}
}
function ekle(thisfield, defaulttext) {
if (thisfield.value == "") {
thisfield.value = defaulttext;
}
}
