Just a little offer from another user...
Try this instead:
<script src="CuteEditor_Files/include_CuteEditor.asp" language="vbscript" runat="server"></script>
<script runat="server" language="vbscript">
<%
Dim editor
Set editor = New CuteEditor
editor.ID = "Story"
editor.Text = "Hello World"
editor.Width = 500
editor.ConfigurationPath = "CuteEditor_Files/Configuration/AutoConfigure/Simple.config"
editor.Draw()
%>
</script>