function enable(groupdata,data)
{ 
 document.getElementById(groupdata).style.display= "block";
}
function disable(groupdata,data)
{
 document.getElementById(groupdata).style.display= "none";
}

