function Danish(input){
	input = input.replace(/å/g, "aa");
	input = input.replace(/æ/g, "ae");
	input = input.replace(/ø/g, "oe");
	return input;
}
