function redirectIfConfirm(msg,link){
	if(confirm(msg)){
		window.location.href=link;
	}
}
