I am VERY new in class (2 weeks - 1st year) and I have a long script to make but I am just trying to get the basics done to see how it works but it won't show up after the first page that has the button to start the program.

I really don't want the answer to my problem because that won't help me in the long run but what I want is to know HOW to find my mistakes.
I am using FireFox & can't get the debugger to work.
Is there another program that you people use that is better?
Code:
function main() //program driver
{ // Begin function main()
// this section tells me what the variables are
var pennies = 0;
var nickles = 0;
var t = 0;
// This section will let the user be prompted for the amount of coin.
pennies = parseFloat(prompt("Enter how many pennies you have:", ""));
nickles = parseFloat(prompt("Enter how many nickles you have:", ""));
t = .01 * pennies + .05 * nickles; //Also tried this: t = (.01 * pennies) + (.05 * nickles);
// Shows total coins
alert("Pennies: " + pennies.toFixed) + "\n" +
"Nickles: " + nickles.toFixed) + "\n" +
"Caculated amount: " + t.toFixed);
} // End function main()