function InitializeTinyMce(id, lang) {
	// http://tinymce.moxiecode.com/i18n/index.php?ctrl=lang&act=index&pr_id=7
	$(id).tinymce({
		theme: "advanced",
		language: ( lang == undefined ? "en" : lang ),
		plugins: "tabfocus,insertdatetime",
		theme_advanced_buttons1: "bold,italic,underline,strikethrough,sub,sup,|,justifyleft,justifycenter,justifyright,justifyfull,|,formatselect,fontselect,fontsizeselect",
		theme_advanced_buttons2: "cut,copy,paste,pastetext,pasteword,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,image,|,insertdate,inserttime,|,forecolor,backcolor",
		theme_advanced_buttons3: "",
		theme_advanced_toolbar_location: "top",
		theme_advanced_toolbar_align: "left",
		theme_advanced_statusbar_location: "bottom",
		tab_focus: ':prev,:next'
	});
}

