<!--

// This is a simple example of an InitPage() override.
function InitPage()
{
	// You can still reference the overridden InitPage()
	// via the BaseInit function pointer IFF you need to.
	BaseInit();

	// Do whatever extra work needs to be done:
	// DoStuff();
	// ...
}

// -->
