function expshow(showtab,tabno,n)
{
 for (i=1;i<=n;i++)
 {
 if(i==tabno)
 {
 document.getElementById(showtab+i).style.display="inline";
 }
 else
 {
 document.getElementById(showtab+i).style.display="none";
 }
 }
}