tinyMCEPopup.requireLangPack();

var MICconferenceDialog = {
	init : function() {
		var f = document.forms[0];

		// Get the selected contents as text and place it in the input
	},

	insert : function(html) {
		// Insert the contents from the input into the document
		var f = document.forms[0];

	//	var html = '<div class="advalvasItemDetailed"><p style="text-align: center;"><b>' + title + '</b></p><p style="text-align: right;">' +datestring+ '</p></div>';
		
		tinyMCEPopup.editor.execCommand('mceInsertContent', false, html);
		tinyMCEPopup.close();
	}
};

tinyMCEPopup.onInit.add(MICconferenceDialog.init, MICconferenceDialog);

