Ok, lets say I was using the alert method and I type, alert("You are about to enter my website"

in the <body>. So once the user accesses my page the alert pop-up screen will appear stating 'You are about to enter my website'
This is basically the idea I want except I don't want an alert pop-up. I want a table printed on screen. I don't want it written there already because I'm using frames and a calculator and I am updating the the bottom frame with numbers each time, thus creating a list of numbers in the frame each time. So I just want to create a table once the page is accesses so that I can be able to label the list of numbers. I hope this clears up my question.
~kanin
example:
//top frame
x + y = z //user enters values for x, y
[store]
//bottom frame
[input 1][input 2][answer] //printed when page is loaded
[ 2 ][ 2 ][ 4 ] //store button prints this
[ 3 ][ 4 ][ 7 ] //store button prints this
[ 5 ][ 1 ][ 6 ] //store button prints this
The command for the 'store' button is user activated. I need the command for the when the page is loaded. They work basically the same - printing table to bottom frame -except I want the labels printed at the time the page is loaded.