Code:
<html>
<body>
<script src="../flovinax.js" type="text/javascript"></script>
<script>
function toggleEditor(edtN) {
if(!toggleEditor[edtN]) {
editInstance = new flovinaxa({fullPanel : true}).panelInstance(edtN);
toggleEditor[edtN]=true
}
else {
editInstance.removeInstance(edtN);
toggleEditor[edtN]= false;
}
}
</script>
<div>
<textarea style="width: 800px; height: 200px;" id="myArea"></textarea>
<br />
<button onClick="toggleEditor('myArea');">+</button>
</div>
<div style="clear: both;"></div>
<div>
<textarea style="width: 800px; height: 200px;" id="myArea2"></textarea>
<br />
<button onClick="toggleEditor('myArea2');">+</button>
</div>
<div style="clear: both;"></div>
</body>
</html>