function Icons(div,objImg)
          {
               var firstLoad=0          
               var divproperty = document.getElementById(div.id);               
               if (document.getElementById(div.id).style.display=='none')
               {
                 firstLoad=1
               }         
               if(firstLoad==0)
		        {
		          document.getElementById(div.id).style.display='none'; 
		          document.getElementById(objImg.id).setAttribute("src","../images/E-softsys_plus.gif");
		          document.getElementById(objImg.id).setAttribute("cursor","hand");		          		      
		        }
		        else
		        {
		         document.getElementById(div.id).style.display='inline'; 
		         document.getElementById(objImg.id).setAttribute("src","../images/E-softsys_minus.gif");
		         document.getElementById(objImg.id).setAttribute("cursor","hand");	
		        }                  
             
           }