//standard JavaScript base footer for SICG Website

//written by Michael Coxon



//the site-wide footer



function writeFooter(cat) {



	if (cat=="gen") {

		document.write('<blockquote>')

		document.write('<font face="Verdana, Arial, Helvetica sans-serif" size="1">')

		document.write('<br><br><b>Facilities</b> - <a href="javascript:void(0)" onClick=\'loadURL("fac","fac_home")\'>facilities</a> | <a href="javascript:void(0)" onClick=\'loadURL("fac","prices")\'>prices/hours</a> | <a href="javascript:void(0)" onClick=\'loadURL("fac","route")\'>route setting</a> | <a href="javascript:void(0)" onClick=\'loadURL("fac","tour")\'>tour</a><br>') 

		document.write('<b>Sales</b> - <a href="javascript:void(0)" onClick=\'loadURL("sal","sal_home")\'>sales/service</a> | <a href="javascript:void(0)" onClick=\'loadURL("sal","gear")\'>climbing gear</a> | <a href="javascript:void(0)" onClick=\'loadURL("sal","instruct")\'>climbing instruction</a> | <a href="javascript:void(0)" onClick=\'loadURL("sal","outdoor")\'>outdoor climbing</a> | <a href="javascript:void(0)" onClick=\'loadURL("sal","groups")\'>groups</a><br>') 

		document.write('<b>Magazine</b> - <a href="javascript:void(0)" onClick=\'loadURL("mag","mag_home")\'>magazine</a> | <a href="javascript:void(0)" onClick=\'loadURL("mag","train")\'>training</a> | <a href="javascript:void(0)" onClick=\'loadURL("mag","news")\'>news</a><br><br>')

		document.write('Send mail to <a href=mailto:mikegarben@smartchat.net.au>mikegarben@smartchat.net.au</a> ')

		document.write('with questions or comments about this web site.<br>')

		document.write('Copyright &copy; 1999 Sydney Indoor Climbing Gym<br>')

		document.write('Last modified 1st April 2000')

		document.write('</blockquote>')

}}





function loadURL(division,page) {

	location.replace("http://www.indoorclimbing.com.au/" + division + "/" + page + ".htm")

	top.menu.location = "http://www.indoorclimbing.com.au/" + division + "/" + division + "_menu.htm"

	top.banner.location = "http://www.indoorclimbing.com.au/" + division + "/" + division + "_banner.htm"



}







//notes for upkeep.



//do not open this file in MS Word, or MS FrontPage, use notepad or other text editor.



//replace "file:///Macintosh%20HD/Documents/Work/sicg/production/site/"

//with "http://www.yourdomain.com.au"



//to add a link go to end of 3rd, 4th or 5th document.write('') lines

//insert: " | <a href="javascript:void(0)" onClick=\'loadURL("division","page")\'>text for link</a>"

//before "<br>')"

//or, in the case of the 5th line, before "<br><br>')"



//division is either fac, sal, or mag; and the page is the page name without the .htm extension

//you must place the page within the correct category's folder.

