function confirmDelete(locale){
	var msg = {fi_FI: "Haluatko varmasti poistaa kommentin?", en_GB: "Are you sure you want to delete the comment?"};
	if(typeof(msg[locale]) != 'undefined'){
		return confirm(msg[locale]);
	}
	else{
		return confirm("Confirm deletion?");
	}
}