var copyright_text;
var startyear = "2008";

function print_copyright() {
	var currentyear = new Date().getFullYear().toString();
	copyright_text = "Copyright&nbsp;&nbsp;&copy;&nbsp;&nbsp;" + startyear;
	if(currentyear != startyear && parseInt(currentyear) > parseInt(startyear)){
		copyright_text += " - " + currentyear;
	}
	copyright_text += "&nbsp;&nbsp;The Penyos Place. All rights reserved.";
	return copyright_text;
}