function switchDiv(id,plusimage,minusimage) 
{ 
	if (document.all('DIV'+id).style.display == 'none')
	{
	document.all('DIV'+id).style.display = 'block' ; 
	document.all('IMG'+id).src = minusimage ;
	} 
	else
	{
		document.all('DIV'+id).style.display = 'none';
		document.all('IMG'+id).src = plusimage;
	}


 }
