/* jquery */
$(document).ready(function(){

  $('#xfade_container').cycle({
      fx: 'fade',
      timeout: 3000,
      speed: 1000
    });

  $('#xfade_container_np').cycle({
      fx: 'fade',
      timeout: 0,
      speed: 1000,
      next: '#xfade_container_n',
      prev: '#xfade_container_p'
    });

});

/* non-jquery */
function popUp(URL, wWidth, wHeight)
{
  day = new Date();
  id = day.getTime();
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + wWidth + ",height=" + wHeight + "');");
}

