function showsonclass(id)
{
    var s=document.getElementById("ClassIcon-"+id).src.indexOf("pic-2.gif");
    if(s!=-1)
    {
        document.getElementById("ClassIcon-"+id).src=document.getElementById("ClassIcon-"+id).src.replace('2.gif','1.gif')
        document.getElementById("SonId-"+id).style.display="none";
    }
    else
    {
        document.getElementById("ClassIcon-"+id).src=document.getElementById("ClassIcon-"+id).src.replace('1.gif','2.gif')
        document.getElementById("SonId-"+id).style.display="";
    }
}