var Editor;
//Inicializace
function wysiwygInit(){
Editor = document.getElementById('wysiwyg_textbox').contentWindow.document;
Editor.designMode="on";
txtFrame.document.write('');
txtFrame.document.close();
Editor.body.innerHTML=cleanAll(translate(document.getElementById('wysiwyg_text').value));
Editor.body.style.fontFamily="arial";
document.forms['wysiwyg'].onsubmit = function () {
var text = document.getElementById('wysiwyg_text');
var textik= Editor.body.innerHTML;
text.value = cleanAll(textik);
};
}

function cleanAll(html){
html=html.replace(/<p>/gi,'##s##');
html=html.replace(/<\/p>/gi,'##e##');
html=html.replace(/<br\/>/gi,'##b##');
html=html.replace(/<br>/gi,'##b##');
html=html.replace(/<([^>]*)>/gi,'');
html=html.replace(/##s##/gi,'<p> ');
html=html.replace(/##e##/gi,'</p> ');
html=html.replace(/##b##/gi,'<br/> ');
return html;
}

function translate(text){
text=text.replace(/&start#/gi,'<');
text=text.replace(/&end#/gi,'>');
text=text.replace(/&uvozovky#/gi,'"');
text=text.replace(/&lomitko#/gi,'/');
return text;
}
