function ehSearchCompleted(){
obj = document.searchData ;	
obj.submit() ;
}


function ehSearchAction()
{
obj = document.searchData ;
q = obj.q.value ;

ehsObj = new sack();

ehsObj.setVar("m", "Bizuser");
ehsObj.setVar("a", "DisplayAd");
ehsObj.setVar("p", "ehsearch");
ehsObj.setVar("q", q);
//ehsObj.requestFile = "http://www.e-healthshare.com/biz/?m=Bizuser&a=DisplayAd&p=ehsearch&q=" + q;
ehsObj.requestFile = "http://www.e-healthshare.com/biz/index.php";
//ehsObj.method = 'get';
ehsObj.method = 'post';
ehsObj.element = 'ehsearch';
ehsObj.onCompletion = ehSearchCompleted;
ehsObj.runAJAX();

//return false;

}