//example use: flipDIV( divtoshow, divtohide1, divtohide2, divtohide3 )function flipDIV() {  for (var i=0; i<arguments.length; i++ ) {    if( i==0 )      eval( "document.getElementById( '" + arguments[i] + "' ).style.display='block';");    else      eval( "document.getElementById( '" + arguments[i] + "' ).style.display='none';");  }} // flipDIVfunction changeCSS(el, classname) {  //alert( el.className + 'received ' + classname);  el.className=classname;} // changeCSS//example ToggleFactSheetTabBottoms( show, hide, hide, hide, hide, etc.)function ToggleFactSheetTabBottoms(id) {  eval( "document.getElementById( 'tabbar1' ).className='TabBottomOff';");  eval( "document.getElementById( 'tabbar2' ).className='TabBottomOff';");  eval( "document.getElementById( 'tabbar3' ).className='TabBottomOff';");  eval( "document.getElementById( 'tabbar4' ).className='TabBottomOff';");  eval( "document.getElementById( 'tabbar5' ).className='TabBottomOff';");  eval( "document.getElementById( 'tabbar6' ).className='TabBottomOff';");  eval( "document.getElementById( 'tabbar7' ).className='TabBottomOff';");  eval( "document.getElementById( 'tabbar8' ).className='TabBottomOff';");  eval( "document.getElementById( '" + id + "' ).className='TabBottomOn';");/*     for( var i=0; i<arguments.length; i++ ) {	    if( i==0)	      eval( "document.getElementById( '" + arguments[i] + "' ).className="TabBottomOn");		else	      eval( "document.getElementById( '" + arguments[i] + "' ).className="TabBottomOff");	 }*/}