// JavaScript Document
function ShiftContent(ContentTag) 
{ 
divroll = document.all.tags("DIV"); 
  for(i=0; i<divroll.length; i++) 
  { 
whichEl = divroll(i); 
idtag = "Content"+ContentTag 
    if (whichEl.id == idtag) 
    { 
     if (whichEl.style.display == "none") 
     { 

	eval('document.all.Icon'+ContentTag+'.src="images/IconClose.gif"') 
     whichEl.style.display = "block"; 
     } 
    else 
     { 
	eval('document.all.Icon'+ContentTag+'.src="images/IconExpand.gif"')
     whichEl.style.display = "none"; 
     } 
    } 
  } 
} 
function ShiftContentAll(Action) 
{ 
	divroll = document.all.tags("DIV"); 
	if (Action == 'Open')
	{
		  for(j=0; j<divroll.length; j++) 
		  { 
				whichEl = divroll(j); 
				idtag = "Content"+(j+1) 
				eval('document.all.Icon'+(j+1)+'.src="images/IconClose.gif"') 
				whichEl.style.display = "block"; 
			} 
	  }
	  else
	  {
			for(j=0; j<divroll.length; j++) 
		  { 
				whichEl = divroll(j); 
				idtag = "Content"+(j+1) 
				eval('document.all.Icon'+(j+1)+'.src="images/IconExpand.gif"') 
				whichEl.style.display = "none"; 
			}  
		}
} 