
function getlist(idx)
{
  AjaxRequest.get(
    {
      'url':'aj_lists.php?list='+idx
      ,'onSuccess':function(req){ document.getElementById("listcontent").innerHTML=req.responseText; }
    }
  );
}

function getcomments(a,cs,p)
{
  AjaxRequest.get(
    {
      'url':'aj_comments.php?a='+a+'&sort='+cs+'&p='+p
      ,'onSuccess':function(req){ document.getElementById("comments").innerHTML=req.responseText; }
    }
  );
}

function about()
{
	var cuswindow = window.open('','','left=200,top=200,width=360,height=410,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1');
	cuswindow.location.href = 'about.html';
	if (cuswindow.opener == null) { cuswindow.opener = self; }
	else { cuswindow.focus(); }
}