﻿var searchInput = document.getElementById("searchInput");
searchInput.style.color = "black";
if ( "Поиск по сайту" == Trim(searchInput) )
	searchInput.style.color = "silver";
searchInput.onfocus = function ()
{	
	if ( "Поиск по сайту" == searchInput.value )	
		searchInput.value = "";
	searchInput.style.color = "black";
}
searchInput.onblur = function ()
{
	if ( 0 == Trim(searchInput).length )
	{
		searchInput.value = "Поиск по сайту";
		searchInput.style.color = "silver";
	}
}

function CheckSearchInput ()
{
	var searchTxt = Trim(searchInput);
	if ( 0 == searchTxt.length || "Поиск по сайту" == searchTxt )
	{
		alert("Введите условие поиска");
		searchInput.focus();
		searchInput.select();
		return false;
	}
	else
		return true;
}