function runClock() {
theTime = window.setTimeout("runClock()", 1000);
var today = new Date();
var display = today.toLocaleString();
window.status = display;
}


function goSearch()
{
if (document.searchForm.q.value != "" )
{
if (document.searchForm.siteRadio[1].checked)
s = document.searchForm.siteRadio[1].value  
else  s = document.searchForm.siteRadio[0].value 
win = open("http://www.google.com/search?q="+document.searchForm.q.value+"&hq=inurl:"+s+"&hl=ar&lr=&ie=UTF-8&inlang=ar&filter=0")
}
}


function validate(GBook22)
	{

        tt=""
	if(GBook22.G_Name.value=="")
		{
		tt = tt+"\n -الاسم";
		}
	if(GBook22.G_Title.value=="")
		{
		tt = tt+"\n -عنوان الموضوع ";
		}
		
	if(GBook22.G_Comment.value.length=="")
		{
		tt = tt+"\n -نص الموضوع";
		}
        if(tt=="") {
	return true;
	}
	else
	tt2="الرجاء ادخال التالي\n"+tt
        alert(tt2);
        return false;
	}
