﻿function cursor_wait(num,ids) {
    document.body.style.cursor = 'hand';
    if(num=="search")
    {
   //window.document.getElementById(ids).style.backgroundColor="#fafafa";
    }
}

// Returns the cursor to the default pointer
function cursor_clear(num,ids) {
if(num=="search")
    {
  //  window.document.getElementById(ids).style.backgroundColor="#ffffff";
    }
    document.body.style.cursor = 'default';
}
function ButtonChange(idbutton,mouse)
{
var btn=document.getElementById(idbutton);
if(btn!=null)
{
if(mouse=="1")
    btn.src="App_Themes/Default/button/xoa2.png";
    else 
    btn.src="App_Themes/Default/button/xoa.png";
}
}
