Thanks Adam,
We have downloaded the latest version of the editor and have made the ToggleBorder=false change within that version as shown below. However, the editor still displays the borders when pages first open or after accessing and then exiting the html view.
<?php
$editor=new CuteEditor();
$editor->ID="Editor1";
$editor->Text="Type here";
$editor->ToggleBorder=false;
$editor->Draw();
$editor=null;
//use $_POST["Editor1"]to catch the data
?>