function ShowHideButton(obj)
{
    if(obj != null)
    {
        obj.disabled = false;
    }
}

function ShowImage()
{
    alert('obj');
}

function pageCheck()
{
    alert('hello');
}


