var
	sCompanyName = "ATHLETES CORNER",
	sCompanyWebName = "ATHLETESCORNER",
	sCompanyAddress = "8014 NE 13th Ave",
	sCompanyAddress2 = "",
	sCompanyCity = "Vancouver",
	sCompanyState = "Wa",
	sCompanyZip = "98665",
	sCompanyOrderPhone = "",
	sCompanyInfoPhone = "360-574-1010",
	sCompanyWebsite = "athletescorner.com",
	sCompanyID = "_R_7I";
var
	asRepList = new Array(
                          );
function writeAdminEmailLink(doc,sLinkText)
{
    doc.writeln( '<A HREF="mailto:ATHLETESCORNER@repdirect.net">'  + sLinkText + '</A>' );
}
var
	asTeamList = new Array(
					new Array( "CLARK COLLEGE Baseball of Vancouver, WA", "_R_AE" , "1311806022", "WA        " )
                        );
function writePromoLink(doc,sIntroText,sLinkText,sTrailText)
{
  doc.writeln( "" );
}
function writeCompanyName(doc)
{
	doc.writeln( sCompanyName );
}
	function writeRepListDropDown(doc)
	{
		doc.writeln( "<select name=\"selectRep\" size=\"1\">" );
		for( var iRep = 0; iRep < asRepList.length; iRep++ )
			doc.writeln( "<option value=\"" + asRepList[ iRep ][ 1 ] + "\">" + asRepList[ iRep ][ 0 ] );
		doc.writeln( "</select>" );
	}
	function writeTeamListDropDown(doc)
	{
		doc.writeln( "<select name=\"selectRep\" size=\"1\">" );
		for( var iTeam = 0; iTeam < asTeamList.length; iTeam++ )
			doc.writeln( "<option value=\"" + asTeamList[ iTeam ][ 1 ] + "|" + asTeamList[ iTeam ][ 2 ] + "\">" + asTeamList[ iTeam ][ 0 ] );
		doc.writeln( "</select>" );
	}
	function writeTeamListDropDownByState(doc,state)
	{
		doc.writeln( "<select name=\"selectRep\" size=\"1\">" );
		for( var iTeam = 0; iTeam < asTeamList.length; iTeam++ )
			if( state == asTeamList[ iTeam ][ 3 ] )
				doc.writeln( "<option value=\"" + asTeamList[ iTeam ][ 1 ] + "|" + asTeamList[ iTeam ][ 2 ] + "\">" + asTeamList[ iTeam ][ 0 ] );
		doc.writeln( "</select>" );
	}

