<!-- Begin
function privatestuff (password) {
var pass1 = "m0rem1les"; // place password here

if (password==pass1) {
	alert ("Access Granted");
	changeText();
	return true;

	} else {
		window.location= "home.htm"; // file to load if password is incorrect
}
}

function changeText(){

document.write("<head>");
document.write("<title>Coaches Only<\/title>");
document.write("<link rel=\"stylesheet\" href=\"ctrack.css\">");
document.write("<script src=\"trackprotect.js\"><\/script>");
document.write("<\/head>");
document.write("<FONT face=\"cooper black\" style=\"bold\" color=\"indigo\">");

document.write("<FORM  METHOD=\"POST\" ACTION=\"../\database/\CurrentRegs.php\">");
document.write("<input type=\"submit\" style=\"width:150\" value=\"Registration\" id=\"button1\" onmouseover=\"this.id='button2';\" onmouseout=\"this.id='button1';\">");
document.write("<\/Form>");

document.write("<FORM  METHOD=\"POST\" ACTION=\"../\database/\AllAthletes.php\">");
document.write("<input type=\"submit\" style=\"width:150\" value=\"Athletes\" id=\"button1\" onmouseover=\"this.id='button2';\" onmouseout=\"this.id='button1';\">");
document.write("<\/Form>");

document.write("<FORM  METHOD=\"POST\" ACTION=\"../\database/\WhoIsInMeet.php\">");
document.write("<input type=\"submit\" style=\"width:150\" value=\"Meet Registrants\" id=\"button1\" onmouseover=\"this.id='button2';\" onmouseout=\"this.id='button1';\">");
document.write("<\/Form>");

document.write("<FORM  METHOD=\"POST\" ACTION=\"../\database/\UniformCount.php\">");
document.write("<input type=\"submit\" value=\"UniformCount\" id=\"button1\" onmouseover=\"this.id='button2';\" onmouseout=\"this.id='button1';\">");
document.write("<\/Form>");


}

// End -->





