
function showDiv(tblID,cnt,cssCustomName,TopImg)
{
		var strID = "Id"+tblID;
		var strImgID="img"+tblID;
		
		if(TopImg=="img01")
		{
			document.getElementById("img01").src="/images/img-sol01-roll.gif";
			document.getElementById("img02").src="/images/img-sol02.gif";
			document.getElementById("img03").src="/images/img-sol03.gif";
			document.getElementById("img04").src="/images/img-sol04.gif";
			document.getElementById("img05").src="/images/img-sol05.gif";

		}
		if(TopImg=="img02")
		{
					
			document.getElementById("img01").src="/images/img-sol01.gif";
			document.getElementById("img02").src="/images/img-sol02-roll.gif";
			document.getElementById("img03").src="/images/img-sol03.gif";
			document.getElementById("img04").src="/images/img-sol04.gif";
			document.getElementById("img05").src="/images/img-sol05.gif";
		}
		
		if(TopImg=="img03")
		{
					
			document.getElementById("img01").src="/images/img-sol01.gif";
			document.getElementById("img02").src="/images/img-sol02.gif";
			document.getElementById("img03").src="/images/img-sol03-roll.gif";
			document.getElementById("img04").src="/images/img-sol04.gif";
			document.getElementById("img05").src="/images/img-sol05.gif";
		}
		
		if(TopImg=="img04")
		{
					
			document.getElementById("img01").src="/images/img-sol01.gif";
			document.getElementById("img02").src="/images/img-sol02.gif";
			document.getElementById("img03").src="/images/img-sol03.gif";
			document.getElementById("img04").src="/images/img-sol04-roll.gif";
			document.getElementById("img05").src="/images/img-sol05.gif";
		}
			
		if(TopImg=="img05")
		{
					
			document.getElementById("img01").src="/images/img-sol01.gif";
			document.getElementById("img02").src="/images/img-sol02.gif";
			document.getElementById("img03").src="/images/img-sol03.gif";
			document.getElementById("img04").src="/images/img-sol04.gif";
			document.getElementById("img05").src="/images/img-sol05-roll.gif";
		}
			
		
		
		if(document.getElementById(strID).style.display == "none")
		{
		  for(i=0;i<=cnt;i++)
		  {
			  if(i != tblID)
			  {
			  	var tblID = "Id"+i;
			  	var imglID = "img0"+(i+1);
				
				document.getElementById(tblID).style.display = "none";
				
				document.getElementById(imglID).className ='';
				document.getElementById(imglID).setAttribute("className", "");
			  }
			 
		  }
		    document.getElementById(strID).style.display = "block";
	    }
		document.getElementById(TopImg).className =cssCustomName;  
		document.getElementById(TopImg).setAttribute("className", cssCustomName);
		
		return false;
}
