var colour; var htmlOn; //Function to format text in the text box //Function to set colour //Function to add image //Function to switch to HTML view //Function to clear form function ResetForm() { if (window.confirm("Are you sure you want to reset the form?")) { document.getElementById("message").contentWindow.focus() document.getElementById("message").contentWindow.document.body.innerHTML = ""; return true; } return false; } //Function to add smiley function AddSmileyIcon(imagePath){ document.getElementById("message").contentWindow.focus(); document.getElementById("message").contentWindow.document.execCommand("InsertImage", false, imagePath); } //Colour pallete top offset //Colour pallete left offset //Function to hide colour pallete