/*globals window:false*/

function search()
{
	var q= document.getElementById('search_txt').value;
	//var type= document.getElementById('type').value;
	if(q.trim() ==="")
	{
		alert ("الرجاء إدخال النص المراد البحث عنه");
	}
	else
	{
		q.replace('"','&quot;');
		var url = base_url+"search?q="+decodeURI(q)+"&type="+type;
		//var url = "http://maktoob.search.yahoo.com/search?fr=mt-22&p=" + decodeURI(q) + "&vs=islam.maktoob.com";
		window.open(url,"_self");
	}
}
