function deleteTeacher()
{
	if (confirm("Are you sure you want to delete this teacher?"))
	{
		document.location="dteacher2.asp";
	}
	return;
}
function createTeacher()
{
	document.location="cteacher.asp";
}
function updateTeacher()
{
	document.location="uteacher.asp";
}
function createStudent()
{
	document.location="cstudent.asp";
}
function updateStudent()
{
	document.location="ustudent.asp";
}
function importStudent()
{
	document.location="istudent.asp";
}
function deleteStudent()
{
	if (confirm("Are you sure you want to delete this student?"))
	{
		document.location="dstudent2.asp";
	}
	return;
}
