<!--
function ConfirmEmailDelete(id)
{
	if (confirm("Are you sure want to delete this email address?"))
	{
		window.location = "/emails/delete/" + id;
	}

}

function FilterSwimmer() {

	age = document.getElementById("age").value;
	stroke = document.getElementById("stroke").value;
	
	window.location = window.location + "&age="+age+"&stroke="+stroke;
}

function showAlert()
{
	document.getElementById("alertlink").className = 'active';
	document.getElementById("cornerlink").className = '';
	document.getElementById("alert").style.display = 'block';
	document.getElementById("corner").style.display = 'none';
	document.getElementById("hp-main").className = 'alertbody';
	document.getElementById("alertlink").style.paddingBottom = '6px';
	document.getElementById("cornerlink").style.paddingBottom = '5px';
}

function showCorner()
{
	document.getElementById("alertlink").className = '';
	document.getElementById("cornerlink").className = 'active';
	document.getElementById("alert").style.display = 'none';
	document.getElementById("corner").style.display = 'block';
	document.getElementById("hp-main").className = 'cornerbody';
	document.getElementById("cornerlink").style.paddingBottom = '6px';
	document.getElementById("alertlink").style.paddingBottom = '5px';
}

//-->