var now = new Date ();
var copyrightYear = Math.max(now.getFullYear(), 2005);

// © Copyright 2006 Aircheck Australia.  All Rights Reserved. 
// Spot Ten and Aircheck are trademarks of Aircheck Australia.  

var copyrightNotice = "&copy Copyright 2002-"+copyrightYear+" Aircheck Australia. All Rights Reserved. &nbsp; <span style='color:orange;'></span>";
var patentNotice = "The AirCheck.net.au broadcast content recognition process is protected by U.S. Patent 5,437,050. ";
var trademarkNotice = "AirCheck and its logos are service marks of AirCheck Australia.";

var printedNotices = "<p align=justify style='font-size:8px;'>";
printedNotices += "The AirCheck.net.au and PaperVue services are &copy Copyright 2002-"+copyrightYear+" AirCheck Australia.  All Rights Reserved.<br>";
printedNotices += "AirCheck, PaperVue, their respective logos, \"The New Broadcast Monitoring\" and \"Newspaper Ad Tracking\" are service marks of AirCheck Australia.<br>";
printedNotices += "The AirCheck.net.au broadcast content recognition process is protected by U.S. Patent 5,437,050.</p>";

function insertCopyrightNotice () { document.write(copyrightNotice); }
function insertPatentNotice ()    { document.write(patentNotice);    }
function insertTrademarkNotice () { document.write(trademarkNotice); }
function insertPrintedNotices ()  { document.write(printedNotices);  }

function getCopyrightNotice () { return copyrightNotice; }
function getPatentNotice ()    { return patentNotice;    }
function getTrademarkNotice () { return trademarkNotice; }
function getPrintedNotices ()  { return printedNotices;  }

