<!--
// Copyright Script - author Rick Greiner
// copyright 2006 web-stirs.com - all rights reserved
// http://www.Web-STIRS.com/
// contact: http://www.web-stirs.com/index4.html
// If permission is granted, all credits must remain intact

var digital = new Date();
var cyear = digital.getFullYear();
// original copyright date
var syear = 2001;
if (syear != cyear) {
// client link
document.write ("<center><p><a class='copyrighttext' href='./contact.htm'>Rush Hour Productions</a>");
document.write ("<span class='copyrighttextlink'>");
document.write ("&nbsp;<a style='text-decoration:none; color:#605050;' href='http://www.web-stirs.com' target=_'blank'>Copyright</a>" + "&nbsp;&copy;&nbsp;" + syear + "-" + cyear);
document.write ("&nbsp;-&nbsp;All Rights Reserved");
document.write ("&nbsp;|&nbsp;");
document.write ("</span>");
document.write ("<span class='copyrighttextlink'>");
document.write ("Designs by <a href='http://www.web-stirs.com' class='copyrighttextlink' target='_blank' title='Web-STIRS.com website designs and business promotions'>Web-STIRS.com</a>");
document.write ("</span>");
document.write ("</p></center>");

}else{
// client link
document.write ("<center><p><a class='copyrighttext' href='./contact.htm'>Rush Hour Productions</a>");
document.write ("<span class='copyrighttextlink'>");
document.write ("&nbsp;<a style='text-decoration:none; color:#605050;' href='http://www.web-stirs.com' target=_'blank'>Copyright</a>" + "&nbsp;&copy;&nbsp;" + cyear);
document.write ("&nbsp;-&nbsp;All Rights Reserved");
document.write ("&nbsp;|&nbsp;");
document.write ("</span>");
document.write ("<span class='copyrighttextlink'>");
document.write ("Designs by <a href='http://www.web-stirs.com' class='copyrighttextlink' target='_blank' title='Web-STIRS.com website designs and business promotions'>Web-STIRS.com</a>");
document.write ("</span>");
document.write ("</p></center>");
}
//-->