
// inc_tally.js

var timestmp="09/16/05  &nbsp; 3:00 pm"		//date of entry/adjustment here
var ft1=15;					//field trip #1
var ft2=30;					//field trip #2
var wkshp2=33;				//workshop #2
var lunch=48;				//luncheon


//document.write("Just say this from JS file.");

function print_timestmp(){
document.write("Registrants for special events, <BR>as of:    <B>" + timestmp + "</B><BR><BR>");
}

function print_ft1(){
document.write("Field Trip #1 - Big Lime:   " + ft1 + " <B> / 20</B><BR>");
return;
}

function print_ft2(){
document.write("Field Trip #2 - Devonian:   " + ft2 + " <B> / 30</B> <Font Color='red'><B>SOLD OUT!</B></FONT><BR>");
return;
}

function print_wkshp2(){
document.write("Workshop #2 - Rocks to Models:   " + wkshp2 + " <B> / 45</B><BR>");
}

function print_lunch(){
document.write("All-Division Luncheon:   " + lunch + " <B> / 50</B><BR>");
}

function print_allstuff(){
print_timestmp();
print_ft1();
print_ft2();
print_wkshp2();
print_lunch();
}
