﻿function checkSearch()
{
	var src = document.getElementById('q').value;
	
	if(src=="")
	{
		alert("الرجاء كتابة نص للبحث!");
		document.getElementById('q').focus();
		return false;
	}
	
	return true;
}
