
function msieversion()
{
 var ua=window.navigator.userAgent;
 var msie=ua.indexOf("MSIE ")
 if (msie > 0)
     return ua.substring(msie+5,ua.indexOf(";",msie));
   return "";
}

window.top.defaultStatus = "Copyright (c) 2000-2008 Alun Williams";

if (msieversion()=="5.5")
{
  document.styleSheets(0).href = 'fractals-ie55.css';
}
else if (msieversion()>="4" && msieversion()<"5.5")
  document.styleSheets(0).href = 'fractals-ie5.css';

function fix_titles()
{
  // Ensure images with no title get some kind of tooltip
  // Must be executed during or after onLoad() event
  for (var i = 0; i < document.images.length;i++)
  {
    var im = document.images[i];
    if (im.title=="")
      im.title = im.alt;
  }
}