<!-- hide from old browsers

function newWindow(page)
{
	pageWindow = window.open(page, "pageWin", "width=820,height=620,scrollbars=yes,resizable=yes,toolbar=yes,location=yes")
}

function validate(form)
{
	var numRE = /^[0-9]{1,4}$/;
	
	if(form.division.value == '')
	{
		alert('Please select a division');
		return false;
	}
	
	if(form.capacity.value != '')
	{
		if(!numRE.test(form.capacity.value))
		{
			alert('Anticipated number of students must be numeric');
			return false;
		}
	}

	return true;
}

function validateExport(form)
{
	var numRE = /^[0-9]{1,4}$/;
	
	if(form.schoolID.value == '')
	{
		alert('Please select a school');
		return false;
	}

	return true;
}

// -->