// whoplayed.js
// Initialises whoplayed.php

window.onload = initialize;

// onload
function initialize() {
	var t;
	if (!DHTML) return;
	
	// HEADER
	t = sf_banner('_WHOPLAYED','Who\'s Played - ' + SEASON_DESC,'Find out how many matches club members have played in.','/img/members.gif',36,40);
	setHTML('header',t);
	
	// NAV[igation]
	t = sf_index();
	setHTML('nav',t);
	
	// W3C ICONS
	t = f_w3cIcons();
	setHTML('w3c',t);
	
	// FOOTER
	//t = f_footer(_TOP,_NOLASTMOD);
	//setHTML('footer',t);	
	
	// Main Output...
	//t = f_whoPlayed('0506','RMB');
	//setHTML('output',t);
	refreshWhoPlayed(SEASON_ID, ORDER_BY);
}

function refreshWhoPlayed(SeasonID,OrderBy) {
	var t = f_whoPlayed(SeasonID,OrderBy);
	setHTML('output',t);	
}

