// JavaScript Document

function Broccoli(formName)
{
	var desc;

	var oranges = "@";	
	var grapes = ".net"
	var apples = "sportsfoundation";
	var bananas = "verizon";
	
	var fruit = apples + oranges + bananas + grapes;
	
	this.thisForm = document.forms[formName];
	
	desc = this.thisForm['cboGender'].value + " Tournament";
	desc = desc + " - Team: " + this.thisForm['txtTeamName'].value;
	desc = desc + " AAU #: " + this.thisForm['txtAAU'].value;
	desc = desc + " Age: " + this.thisForm['cboAge'].value;
	desc = desc + " Grade Level: " + this.thisForm['cboGrade'].value;
	desc = desc + " Level: " + this.thisForm['cboLevel'].value;


	this.thisForm['item_name'].value = desc;
	this.thisForm['item_number'].value = this.thisForm['cboGender'].value + "_Tournament";
	
	if (this.thisForm['cboGender'].value == "Boys")
		this.thisForm['amount'].value = "425.00";
	else
		this.thisForm['amount'].value = "425.00";
		
		
		
	this.thisForm['cmd'].value = "_xclick";
	this.thisForm['bn'].value = "webassist.dreamweaver.4_0_3";
	this.thisForm['business'].value = fruit;
	this.thisForm['currency_code'].value = "USD";
	this.thisForm['shipping'].value = "0";
	this.thisForm['shipping2'].value = "0";
	this.thisForm['handling'].value = "0";
	this.thisForm['return'].value = "http://www.kopysf.com/thankyou.htm";
	this.thisForm['cancel_return'].value = "http://www.kopysf.com/index.htm";
	this.thisForm['undefined_quantity'].value = "0";
	this.thisForm['receiver_email'].value = fruit;
	this.thisForm['mrb'].value = "R-3WH47588B4505740X";
	this.thisForm['pal'].value = "ANNSXSLJLYR2A";
	this.thisForm['no_shipping'].value = "0";
	this.thisForm['no_note'].value = "0";

}


