// JavaScript Document
function checkForm(formName)
{
	//NAME VALIDATION
	if(formName.s.value="Aranacak Kelimeyi Yazın...")
	{
		alert ('Lütfen Aranacak Kelimeyi Girin!');
		formName.s.focus();
		return false;

	}	
	
		    
	return true;
	
}

