function checkEmpty(frm){
	if(frm.txtSearch.value =='' || frm.txtSearch.value ==' ')
		return false;
	return true;
}

