<!--
function write_date()
{
/////// Copyright HTMLfixIT 2003 /////////
var thetime=new Date();
var nyear=thetime.getYear();
if (nyear<=99)
  nyear= "19"+nyear;

if ((nyear>99) && (nyear<2000))
 nyear+=1900;
var copyrt = '<a class="link" href="mailto:&#106;&#102;&#114;&#101;&#101;&#109;&#97;&#110;&#64;&#102;&#114;&#101;&#101;&#109;&#97;&#120;-&#97;&#115;&#115;&#111;&#99;&#105;&#97;&#116;&#101;&#115;&#46;&#99;&#111;&#46;&#117;&#107;">enquiries@freemax-associates.co.uk<\/a>&nbsp;&nbsp;Copyright &copy; 2000-' + nyear +' Freemax-Associates Site design by HLVF ';

////////Browser Object Detection. /////////

// Mozilla/Netscapt/Firefox etc
if ((document.getElementById) && (! document.all))
    {
    var cprdiv = document.getElementById('copyright');
    cprdiv.innerHTML = copyrt;
    }
// IE4+
else if (document.all)
    {
    document.all.copyright.innerHTML = copyrt;
    }

// NS4
else if (document.layers)
    {
    var ns4_layer = document.layers["copyright"];
    ns4_layer.document.open();
    ns4_layer.document.write(copyrt);
    ns4_layer.document.close();
    }
// No final "else" because we want it do die silently if
// there is no supported method available.
}
//-->

