﻿function setItemLink(id)
{
    var node=document.getElementById(id);
    node.className="current";
}
function ConfirmDelete()
{
    var question=confirm('Bạn có thật sự muốn xóa không?');
    if(question!="0")
       return true;
    return false;
}
