
function joinNetwork(networkname, networkid, display_facebox)
{
  
    if(typeof(display_facebox)=="undefined")
    display_facebox='tbl-facebox';

  var html='<table border="0" cellpadding="1" cellspacing="1" width="100%" >';
        html+='<tr>';
          html+='<td colspan="2" class="required" >Are you sure you want to join '+networkname+'?</td>';
        html+='</tr>';
        html+='<tr><td>&nbsp;</td></tr>';
        
        html+='<tr>';
          html+='<td ><input type="button" class="button_new" value="Join" onclick="addMembertoNetwork('+networkid+', \'join\', \''+display_facebox+'\')">&nbsp;&nbsp;&nbsp;';
          html+='<input type="button" class="button_new" value="Cancel" onclick="jQuery(document).trigger(\'close.facebox\')" ></td>';
        html+='</tr>';
      html+='</table >';
      //alert(html)
  displayfaceboxMessage(html, display_facebox);
}

function leaveNetwork(networkname, networkid, display_facebox)
{
    if(typeof(display_facebox)=="undefined")
    display_facebox='tbl-facebox';

  var html='<table border="0" cellpadding="1" cellspacing="1" width="100%" >';
        html+='<tr>';
          html+='<td colspan="2" class="required" >Are you sure you want to leave '+networkname+'?</td>';
        html+='</tr>';
        html+='<tr><td>&nbsp;</td></tr>';
        
        html+='<tr>';
          html+='<td ><input type="button" class="button_new" value="Leave" onclick="addMembertoNetwork('+networkid+', \'leave\', \''+display_facebox+'\')">&nbsp;&nbsp;&nbsp;';
          html+='<input type="button" class="button_new" value="Cancel" onclick="jQuery(document).trigger(\'close.facebox\')" ></td>';
        html+='</tr>';
      html+='</table >';
  displayfaceboxMessage(html, display_facebox);
}


