﻿// JavaScript Document
function check_search()
{
	with (window.document)
	{
		if (getElementById("searchtext").value.replace(/ /g,"") == "")
			return false;
		else
			return true;
	}
}

function resubmit_arabicsearch(actionvalue)
{
	with (window.document)
	{
		getElementById("arabicsecondsearchform").action = actionvalue;
		getElementById("arabicsecondsearchform").submit();
	}
	return false;
}