// JavaScript Document


function validate() {

	var forgot = '';
/*	
	with (f = document.league) {
	
		if (bill_firstname.value == '') forgot += ' - Billing First Name\n';
		if (bill_lastname.value == '') forgot += ' - Billing Last Name\n';
		if (bill_address.value == '') forgot += ' - Billing Address\n';
		if (bill_city.value == '') forgot += ' - Billing City\n';
		if (bill_state.value == '') forgot += ' - Billing State\n';
		if (bill_zip.value == '') forgot += ' - Billing Zip\n';
		if (bill_phone.value == '') forgot += ' - Billing Phone\n';
		if (ccnum.value == '') forgot += ' - Your Credit Card Number\n';
				
	}
	if (forgot != '') {
	
		alert('Please correct the following fields:\n' + forgot);
		return false;
		
	} */

	return true;

}
