﻿function FocusSearch(target, text)
{
    if(target.value == text)
    {
        target.value = '';
        target.style.color = '#000000';
    }
}
function BlurSearch(target, text)
{
    if(target.value == '')
    {
        target.value = text;
        target.style.color = '#888888';
    }
}
function clickButton(e, buttonid){
    var evt = e ? e : window.event;
    var bt = document.getElementById(buttonid);

    if (bt){
      if (evt.keyCode == 13){
            bt.click();
            return false;
      }
    }
}
