<!--


function writeBottomNav(){
	var strReturn = new String();
	strReturn += ('Bottom Nav');
	
document.writeln(strReturn);
}

function writeCopyright(){
	var strReturn = new String();
	strReturn += ('Copyright &#169;2006 Squaw Creek Golf Course. All rights reserved.');
	
document.writeln(strReturn);
}
-->