function confirmation(question, gourl) {
	var answer = confirm(question)
	if (answer){
		window.location = gourl;
	}
}
