function AddValue(Y) 
{
    var X = document.forms.form1.searchstring;
    X.value = X.value + Y;
    X.focus();
}
