﻿function AddSearchEvent(text) {
    var SearchInput = document.getElementById("SearchInput");
    SearchInput.value = text;
    SearchInput.onfocus = function() { if (this.value == text) this.value = ''; };
    SearchInput.onblur = function() { if (this.value == text) this.value = ''; };
}
