<!--
	function cheknewuserlogin(){
	var un = document.frmsearch.ser.value
	if ((un.length<1)||(un.substring(0,4)=="****")){
	alert ('من فضلك  اكتب كلمة البحث') ;
	document.frmsearch.ser.style.color ="#FF0000";
	document.frmsearch.ser.value="كلمة البحث";
	document.frmsearch.ser.focus();
	}else {
	document.frmsearch.submit();
	}
	}
	var bookmarkurl="http://www.el-awa.com"
	var bookmarktitle="الموقع الرسمي للدكتور محمد سليم العوَّا"
	function addbookmark(){
	if (document.all) window.external.AddFavorite(bookmarkurl,bookmarktitle);
	}

	function setCursorByID(id,cursorStyle) {
		 if (document.getElementById) {
		  if (document.getElementById(id).style) {
		   document.getElementById(id).style.cursor=cursorStyle;
		  }
		 }
    }







    // search

    function doHighlight(bodyText, searchTerm, highlightStartTag, highlightEndTag)
{
  // the highlightStartTag and highlightEndTag parameters are optional

  if ((!highlightStartTag) || (!highlightEndTag)) {
    highlightStartTag = "<font style='color:blue; background-color:yellow;'>";
    highlightEndTag = "</font>";
  }
  /*
  if ((!highlightStartTag)) {
    highlightStartTag = "<font style='color:blue; background-color:yellow;'>";
    highlightEndTag = "</font>";
  }
  */
  var newText = "";
  var i = -1;
  var lcSearchTerm = searchTerm.toLowerCase();
  var lcBodyText = bodyText.toLowerCase();

  while (bodyText.length > 0) {
    i = lcBodyText.indexOf(lcSearchTerm, i+1);
    if (i < 0) {
      newText += bodyText;
      bodyText = "";
    } else {
      // skip anything inside an HTML tag
      if (bodyText.lastIndexOf(">", i) >= bodyText.lastIndexOf("<", i)) {
        // skip anything inside a <script> block
        if (lcBodyText.lastIndexOf("/script>", i) >= lcBodyText.lastIndexOf("<script", i)) {
          newText += bodyText.substring(0, i) + highlightStartTag + bodyText.substr(i, searchTerm.length) + highlightEndTag;
          bodyText = bodyText.substr(i + searchTerm.length);
          lcBodyText = bodyText.toLowerCase();
          i = -1;
        }
      }
    }
  }

  return newText;
}

function highlightSearchTerms(searchText, treatAsPhrase, warnOnFailure, highlightStartTag, highlightEndTag)
{
  if (treatAsPhrase) {
    searchArray = [searchText];
  } else {
    searchArray = searchText.split(" ");
  }

  if (!document.body || typeof(document.body.innerHTML) == "undefined") {
    if (warnOnFailure) {
      alert("Sorry, for some reason the text of this page is unavailable. Searching will not work.");
    }
    return false;
  }

  var bodyText = document.getElementById("search").innerHTML;
  for (var i = 0; i < searchArray.length; i++) {
    bodyText = doHighlight(bodyText, searchArray[i], highlightStartTag, highlightEndTag);
  }

  document.getElementById("search").innerHTML = bodyText;
  return true;
}
