//Search form check
function CheckSearchForm () {
	var errorMsg = "";
	if (document.frmInterSearch.search.value==""){
		errorMsg += "الرجاء إدخال كلمة واحدة على الأقل في مجال البحث";
	}
	if (errorMsg != ""){
		msg = "\n";
		errorMsg += alert(msg + errorMsg + "\n\n");
		return false;
	}	
	return true;
}

//Function to open pop up window
function openWin(theURL,winName,features) {
  	window.open(theURL,winName,'toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=150,height=10');
}