function checkfrmSearch(theForm){
		if (theForm.Query.value == "")
		 {
			alert("Отсутствует строка поиска");
			theForm.Query.focus();
			return (false);
		 }
		if (theForm.Query.value.length < 2)
		 {
			alert("Слишком короткое слово");
			theForm.Query.focus();
			return (false);
		 }
		if (theForm.Query.value.length > 100)
		 {
			alert("Слишком длинная фраза");
			theForm.Query.focus();
			return (false);
		 }
		theForm.submit();
	}

function placerun(color1, color2) {
	if  (document.all.mspan.style.visibility!='hidden')  { 
		document.all.mspan.style.visibility='hidden';   
		document.all.mtable.style.backgroundColor = color1;
	}
	else {
		document.all.mspan.style.visibility='visible';   
		document.all.mtable.style.backgroundColor = color2;
	}

	return 0;
}