// Search control

// Sets a form element's value and submits the form
function SSubmitFormValue(as_FormElementName, ak_FormElementValue)
{
	document.forms[0].elements[as_FormElementName].value = ak_FormElementValue;
	document.forms[0].submit();
}

// Submits the form
function SSearch()
{
	document.forms[0].elements["IsSearch"].value = "true";
	//SearchBtn.onclick();
	document.forms[0].submit();
}
