<!--

function addTot()
{
	var t=0;
	for(z=1; z<5; z++)
	{
//		alert('z=' + z);
		deValue=eval('this.document.SchoolAp.Name' + z +'.value');
//		alert('deValue=' + deValue);
		if(deValue > '')
		{
			t=t+1;
		}
//		alert('t=' + t);
	}
	this.document.SchoolAp.TotalNo.value = t;
	showTot();
}

function showTot()
{
x = this.document.SchoolAp.TotalNo.value;
var reg = 295;

if(this.document.SchoolAp.HandsOn.checked == true)
{
reg = 295;
}


if (this.document.SchoolAp.RegCode.value == "WB107")
	{
	reg = 95;
	}

if (this.document.SchoolAp.RegCode.value == "WB00F")
	{
	reg = 0;
	}


if (x > 4)
	{
	alert("Please register attendees in groups of four.");
	}
else if (x == "")
	{
	this.document.SchoolAp.TotalAmt.value = "";
	}
else
	{
	n = (x * reg)
	this.document.SchoolAp.TotalAmt.value = "\$" + n + ".00";
	}

}

function stopMe()
{
	x = this.document.SchoolAp.TotalNo.value;
	if (x > 4)
	{
		alert("Please register attendees in groups of four.");
		return false;
	}
	else if (x == "")
	{
		alert("Please enter the number of attendees you are registering.");
		return false;
	}	
	else
	{
		return true;
	}
}

//-->
