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