Im using AS2

Im not sure where to start but I would like to add to my bubble pop game a high score, users name list.

How would I go about this?

The game will be on a website, as a class activity. I would like to record the names of the players - and if possible their scores.

I was thinking the best place to add with would be at the end of the 60 second clock/timer I have. Here is the code for the clock - is this where I start ?

Code:
onClipEvent (enterFrame) {
	if (_root.time == 30) {
		_root.speedz = 9;
		_root.intervaln = 30;
	}
	if (_root.time == 10) {
		_root.intervalz = 10;
	}
	if (_root.time ==0) {
		_root.gotoAndStop(3);
	}
}