function confirmation() {
	var answer = confirm("Are you sure you want to delete the project?");
	if (answer){
		window.location = "/en/page.asp?id=13";
	}
}

function confirmationDeleteContestant( id ) {
	var answer = confirm("Are you sure you want to delete this participant and his/her related project?");
	if (answer){
		window.location = "/admin/index.asp?method=deleteContestant&id=" + id;
	}
}


function confirmationDeleteUser( id ) {
	var answer = confirm("Are you sure you want to delete this user?");
	if (answer){
		window.location = "/admin/index.asp?method=deleteUser&id=" + id;
	}
}