//text area name
var textArea = 'message';
//Have the propmt box turned on by default
var promptOn = true;
//Create toolbar
function WebWizRTEtoolbar(formName){
document.writeln('
');
}
//Function to turn on or off the prompt box
function PromptMode(selectMode){
if (selectMode.options[selectMode.selectedIndex].value == 0){
promptOn = false;
}
else{
promptOn = true;
}
}
//function to clear area
function clearWebWizRTE(){
if (window.confirm('Внимание: Все данные редактора будут потеряны!!')){
document.getElementById(textArea).value='';
}
}
// Function to add the code for bold italic centre and underline, to the message
function AddMessageCode(code, promptText, InsertText){
if (code != ''){
if (promptOn == true){
insertCode = prompt(promptText + '\n[' + code + ']xxx[/' + code + ']', InsertText);
if ((insertCode != null) && (insertCode != '')){
document.getElementById(textArea).value += '[' + code + ']' + insertCode + '[/' + code + ']';
}
}
else{
document.getElementById(textArea).value += '[' + code + '][/' + code + ']';
}
}
document.getElementById(textArea).focus();
}
// Function to add the font colours, sizes, type to the message
function FontCode(code, endCode) {
if (code != ''){
if (promptOn == true){
insertCode = prompt('Введите текст, в котором Вы хотели бы ' + code + '\n[' + code + ']xxx[/' + endCode + ']', '');
if ((insertCode != null) && (insertCode != '')){
document.getElementById(textArea).value += '[' + code + ']' + insertCode + '[/' + endCode + ']';
}
}
else{
document.getElementById(textArea).value += '[' + code + '][/' + endCode + ']';
}
}
document.getElementById(textArea).focus();
}
//Function to add the URL, indent, list, and Email code to the message
function AddCode(code){
//For the URL code
if ((code != '') && (code == 'URL')){
if (promptOn == true){
insertText = prompt('Введите текст, который будет выводиться для гиперссылки', '');
if ((insertText != null) && (insertText != '') && (code == 'URL')){
insertCode = prompt('Введите URL, на который будет вести гиперссылка', 'http://');
if ((insertCode != null) && (insertCode != '') && (insertCode != 'http://')){
document.getElementById(textArea).value += '[' + code + '=' + insertCode + ']' + insertText + '[/' + code + ']';
}
}
}
else {
document.getElementById(textArea).value += '[' + code + '= ][/' + code + ']';
}
}
//For the email code
if ((code != '') && (code == 'EMAIL')){
if (promptOn == true){
insertText = prompt('Введите текст для условного названия адреса E-mail', '');
if ((insertText != null) && (insertText != '')){
insertCode = prompt('Введите E-mail, на который будет вести ссылка (и, соответственно, куда уйдёт почта)', '');
if ((insertCode != null) && (insertCode != '')){
document.getElementById(textArea).value += '[' + code + '=' + insertCode + ']' + insertText + '[/' + code + ']';
}
}
}
else {
document.getElementById(textArea).value += '[' + code + '= ][/' + code + ']';
}
}
//For the image code
if ((code != '') && (code == 'IMG')){
if (promptOn == true){
insertCode = prompt('Введите Web-адрес картинки', 'http://');
if ((insertCode != null) && (insertCode != '')){
document.getElementById(textArea).value += '[' + code + ']' + insertCode + '[/' + code + ']';
}
}
else {
document.getElementById("message").value += '[' + code + '][/' + code + ']';
}
}
//For the list code
if ((code != '') && (code == 'LIST')){
if (promptOn == true){
listType = prompt('Тип списка \nВвод \'1\' для нумерованного списка или оставьте пустым для маркированного', '');
while ((listType != null) && (listType != '') && (listType != '1')) {
listType = prompt('Ошибка! Пожалуйста, введите \'1\' для нумерованного списка или оставьте пустым для маркированного','');
}
if (listType != null){
var listItem = '1';
var insertCode = '';
while ((listItem != '') && (listItem != null)) {
listItem = prompt('Для закрытия списка последний пункт списка оставьте пустым','');
if (listItem != '') {
insertCode += '[li]' + listItem + '[/li]';
}
}
if (listType == '') {
document.getElementById(textArea).value += '[' + code + ']' + insertCode + '[/' + code + ']';
} else {
document.getElementById(textArea).value += '[' + code + '=' + listType + ']' + insertCode + '[/' + code + '=' + listType + ']';
}
}
}
else{
document.getElementById(textArea).value += '[' + code + '][LI] [/LI][LI] [/LI][LI] [/LI][/' + code + ']';
}
}
//For the indent
if ((code != '') && (code == 'INDENT')){
document.getElementById(textArea).value += ' ';
}
document.getElementById(textArea).focus();
}
//Function to add the code to the message for the smileys
function AddEmoticon(iconCode) {
var txtarea = document.frmMessageForm.message;
iconCode = ' ' + iconCode + ' ';
if (txtarea.createTextRange && txtarea.caretPos) {
var caretPos = txtarea.caretPos;
caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? iconCode + ' ' : iconCode;
txtarea.focus();
} else {
txtarea.value += iconCode;
txtarea.focus();
}
}