function Foil_data_Miner(who){
if(who == "boe") location.replace("mailto:schoolboard@schroonschool.org");
if(who == "djones")  location.replace("mailto:djones@schroonschool.org");
}

function getRandom(max) {return (Math.floor(Math.random()*max))+1;}

//applauses... 120 chars max
var applauses = new Array();
applauses[0]="SLCS HISTORY: Oct. 1, 1925 Meeting at Jenks'store bids rejected on proposed addition to the union school building BOE to purchase materials and pay foreman $8 a day.";
applauses[1]="SLCS HISTORY: May 25, 1925 vote to establish a central school passed -- 70 yes, 29 no, 1 b1ank";
applauses[2]="SLCS HISTORY: Feb. 21, 1928 First class trip to Washington authorized";
applauses[3]="SLCS HISTORY: Jan. 14, 1931 Board sets policy to employ no married women -- not to affect present employees";
applauses[4]="SLCS HISTORY: Dec. 5, 1932 Basketball held in rented community house -- 3 months for $10";
applauses[5]="SLCS HISTORY: Feb. 1934 school building condemned as unsafe. May 21, 1934 New School voted in -- 200 yes, 127 no";
applauses[6]="SLCS HISTORY: Sep. 13, 1935 Cornersgtone laying ceremony 3pm";
applauses[7]="SLCS HISTORY: Feb. 1942 Senior trip to Washington cancelled due to fear of wartime bombing";
applauses[8]="SLCS HISTORY: June 1946 68 of 75 students pass Regents examinations";
applauses[9]="SLCS HISTORY: Oct. 31 1949 BOE accepts report on no subversive activities in the school";
applauses[10]="SLCS HISTORY: Sep. 1957 Concerns at BOE meeting over number of students - 375";
applauses[11]="SLCS HISTORY: Oct. 1976 BOE hears report on hearing loss dangers resulting from loud rock music";

function fillApplause(){
var x = getRandom((applauses.length-1));
if(!x){x=0;}
setApplauseArea()
document.applauseForm.forApplause.value=applauses[x];
}

function setApplauseArea()
{
var n=navigator.appName
var v=parseInt(navigator.appVersion)
var browsok=((n=="Netscape")&&(v>=3))
var browsok2=((n=="Microsoft Internet Explorer")&&(v>=4))
if(browsok2){document.applauseForm.forApplause.cols=25;}
}
