 function doclear() {
	var answer = confirm("Delete your page and try again?")
	if (answer){
		document.getElementById("dokkyedit").value = "";
		tinyMCE.activeEditor.setContent('');
		tinyMCE.getInstanceById('dokkyedit').getWin().document.body.style.backgroundColor='#FFFFFF';
	}
}

// This is where the compressor will load all components, include all components used on the page here
tinyMCE_GZ.init({
plugins : "fullpage,style,table,save,advhr,advimage,advlink,preview,media,contextmenu,inlinepopups",
themes : 'advanced',
languages : 'en',
disk_cache : true,
debug : false
});
tinyMCE.init({
		// General options
		mode : "textareas",
		theme : "advanced",
		plugins : "fullpage,style,table,save,advhr,advimage,advlink,preview,media,contextmenu,inlinepopups",
		// Theme options
		theme_advanced_buttons1 : "fullpage,preview,|,undo,redo,|,justifyleft,justifycenter,justifyright,justifyfull,|,bold,italic,underline,|,fontselect,fontsizeselect,|,forecolor,backcolor,|,link,bullist,numlist,table,|,image,media,|,code",
		theme_advanced_buttons2 : "",
		theme_advanced_buttons3 : "",
		theme_advanced_buttons4 : "",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		//theme_advanced_statusbar_location : "bottom",
		fullpage_default_title : "Untitled",
		theme_advanced_statusbar_location : "bottom",
		theme_advanced_resizing : true,
		theme_advanced_path : false, 

		// Example word content CSS (should be your site CSS) this one removes paragraph margins
		content_css : "css/word.css",

		// Drop lists for link/image/media/template dialogs
		template_external_list_url : "lists/template_list.js",
		external_link_list_url : "lists/link_list.js",
		external_image_list_url : "lists/image_list.js",
		media_external_list_url : "lists/media_list.js",

});