
function confirmAction(link){
	if(confirm('Confirm action?')){
		document.location.href=link;
	}
}
