// load the appropriate .css file (according to resolution)
// also a couple of useful functions

document.writeln ( "<link rel=\"stylesheet\" type=\"text/css\" href=\"css/rust.css\">" );

function email ( text )
{
  document.writeln ( "<a href=\"mailto:" + "taore" + "@-" + "innerduality.-com\">" + text + "</a>" );
}

function openWindow ( html, winName )
{
  var winheight = screen.height / 2;
  var winwidth = screen.width / 2;
  var wintop = winheight / 2;
  var winleft = winwidth / 2;
  var options = "height=" + winheight + ", width=" + winwidth + ", top=" + wintop + ", left=" + winleft + ", resizable, scrollbars=yes";
  window.open ( html, winName, options );
}
