function toggle(id) {
		var expandBlock = document.getElementById('news_' + id);
    var titleBlock = document.getElementById("title_" + id);
    var arrowIcon = document.getElementById('arrow_' + id);

		with (expandBlock.style)      
    {
//    	alert("'" + display + "'")
//    	alert("'" + expandBlock.className + "'")
//    	alert("'" + titleBlock.className + "'")
    	
    	if (display == "none")
    	{
    		display = "";
    		arrowIcon.src =  './images/COLLAPSE_LARGE.png';
    		
    		if (expandBlock.className == "row_1")
    			titleBlock.className = "row_1_no_border";
    		else if (expandBlock.className == "row_2")
    			titleBlock.className = "row_2_no_border";
    	}
    	else
    	{
    		display = "none";
    		arrowIcon.src =  './images/EXPAND_LARGE.png';
    		titleBlock.className = expandBlock.className;
    	}

//			if ( display == "none" )
//      {
//          display = "";
//          // change the css class of the tr so that all td's sitting inside will be stripped of their bottom borders (so it looks nice!)
//          if (titleBlock.className != '')
//          		titleBlock.className = 'rowAlternateNoBottomColor';
//              //titleBlock.className = 'rowAlternateNoBottomColor';
//          else
//              titleBlock.className = 'rowAlternateNoBottomNoColor';
//              
//          //arrowIcon.src =  './images/icons/arrow_opening_active_16.gif';
//          arrowIcon.src =  './images/COLLAPSE_LARGE.png';
//      }
//      else
//      {
//          display = "none";
//          if (titleBlock.className == 'rowAlternateNoBottomColor')
//              titleBlock.className = 'rowAlternate';
//          else
//              titleBlock.className = null;
//              
//          //arrowIcon.src =  './images/icons/arrow_closing_active_16.gif';
//          arrowIcon.src =  './images/EXPAND_LARGE.png';
//      }
  }
}