function Get(section)
{
  var url = 'rpc.php';
  var pars = "content="+section;

  $('content').innerHTML = "Loading . . .";
  var myAjax = new Ajax.Request( url, {method: 'get', parameters: pars, onComplete: showContent});
}

function showContent(request)
{
  $('content').innerHTML = request.responseText;
}

var newwindow = '';
function ImagePopUp(image)
{
  if(newwindow.location && !newwindow.closed)
  {
    newwindow.location.href = image;
    newwindow.focus();
  }
  else
  {
    newwindow = window.open(image, 'htmlname','width=590,height=590,resizable=1');
  }
}
function NewWin(url)
{
  var tmp = window.open(url, 'htmlname','resize=1,menubar=1,scrollbars=1,width=640,height=480');
}
