<!--//
var intStart = 0; // 4 digit year numeric value (not a string).

show_copyright = function(){
	var dtToday = new Date();
	var intEnd = dtToday.getFullYear();
	if (intStart == intEnd || intStart == 0) {
		var sDate = intEnd
	} else {
		var sDate = intStart + '-' + intEnd
	}
	var sOutput = '<div style="text-align:center">\n';
	sOutput += '<div style="margin-top:-30px; font-size:12px; color:#000000; text-align:center;">\n';
	sOutput += 'This website is not affiliated or sponsored by the YMCA of Arlington, Texas.<br />The content within is the sole responsibility of the Seminole Princess tribe volunteers.\n';
	sOutput += '</div>\n';
	sOutput += '<div style="margin:5px; font-weight:bold; font-size:12px; color:#000000; text-align:center">';
	sOutput += 'Copyright &copy; 2005-' + sDate + '; Seminole Princess Tribe';
	sOutput += '</div>\n';
	sOutput += '</div>\n';
	var oDiv = document.createElement("DIV");
	document.body.appendChild(oDiv);
	oDiv.innerHTML = sOutput;
}

if (window.attachEvent) { window.attachEvent("onload", show_copyright); }
else if (window.addEventListener) { window.addEventListener("load", show_copyright, false); }
//-->