	function CallTiny()
	{
	tinyMCE.init({
			// General options
			mode : "exact",
			elements : "message,textarea_rep",
			theme : "advanced",
			plugins : "",
			auto_reset_designmode : true,
			// Theme options
			theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|fontselect,fontsizeselect,forecolor,backcolor,|,link,unlink,image,cite|,undo,redo,",
			theme_advanced_buttons2 : "",
			theme_advanced_buttons3:"",
			theme_advanced_buttons4:"",
			theme_advanced_toolbar_location : "top",
			theme_advanced_toolbar_align : "left",
			theme_advanced_statusbar_location : "bottom",
			theme_advanced_resize_horizontal : false,
			theme_advanced_resizing : true,

			force_br_newlines : true,
			forced_root_block : '', // Needed for 3.x

			// Example content CSS (should be your site CSS)
			content_css : "css/structure.css",			
		

			// Replace values for the template plugin
			template_replace_values : {
				username : "Some User",
				staffid : "991234"
			},
			


		});
		}
		CallTiny();
