/*
function $includeScripts()
{
  // Inlude all Javascript files.
  $includeJs('http://www.incyclesoftware.com/blogs/scripts/global.js');
  $includeJs('http://www.incyclesoftware.com/blogs/scripts/browser.js');
  $includeJs('http://www.incyclesoftware.com/blogs/scripts/ui.js');
}
*/
function $includeJs(jsSrc)
{
  var js = document.createElement('script');
  js.language = 'javascript';
  js.src = jsSrc;
  js.type = 'text/javascript';
  document.getElementsByTagName('head')[0].appendChild(js);
}
function $importStyle(styleUrl)
{
  var link = document.createElement('link');
  link.href = styleUrl;
  link.rel = 'stylesheet';
  link.type = 'text/css';
  document.getElementsByTagName('head')[0].appendChild(link);
}
