//<![CDATA[

$(document).ready(function(){
  $('a[rel*="external"]').click(function(event){
    event.preventDefault();
    window.open(this.href);
  });
  $('table.calendar').tablesorter( {sortList: [[0,0], [1,0]]} );
});

function openwindow(url, title, name, width, height) {
  var params = 'menubar=yes,statusbar=yes,scrollbars=yes,resizable=yes,dependent=yes,title='+title;
  if (!name) name = 'window';
  if (!width) width = 640;
  if (!height) height = 480;
  params = 'width='+width+',height='+height+','+params;
  var win = window.open(url, name, params);
  win.focus();
  return false;
}

function openimage(image, name, title, width, height) {
  var params = 'menubar=no,statusbar=no,scrollbars=yes,resizable=yes,dependent=yes';
  if (!width) width = 100;
  if (!height) height = 100;
  params = 'width='+width+',height='+height+','+params;
  var win = window.open('image.html?image_='+image+'&amp;title_='+title, name, params);
  win.focus();
  return false;
}

//]]>

