function clickURL( uID )
{
  sendAjaxRequest( URLclicked, "/classfactory.php?function=clickURL&uID="+uID, "" );
  return true;
}

function URLclicked()
{
  if( ajaxObj.readyState == 4 )
  {
//    alert(ajaxObj.responseText);
  }
}

function init()
{
		var oElement = document.getElementById('sidebar');

    // 	Create a new element and give it the original element's class name(s) while replacing 'cbb' with 'cb'
    var oOuter = document.createElement('div');
    oElement.id = 'inner_sidebar';
    oOuter.id = 'sidebar2';
    
    // replace original with the new div
    oElement.parentNode.replaceChild(oOuter, oElement);
    createRoundedTable( oOuter, oElement );
}
