// Copyright statement displays at the bottom of every page
function copydate ()
 {
    today=new Date();
    yearonly=today.getFullYear();
	if (yearonly == "2009") {
		firstyear = "&copy;&nbsp;"
    } else {
	 	firstyear = "&copy;&nbsp;2005-"
    }
    document.write(firstyear +yearonly + ' Structure with Style. All rights reserved. ');
 }