function prepareTextArea(){
    var textArea = document.getElementById('commentTextArea');

    if (textArea.innerHTML == "Tu mô\u017eete napísať svoj príspevok"){
        textArea.style.font = "12px Verdana";
        textArea.style.color = "white";
        textArea.innerHTML ="" ;
    }
}

function prepareInputText(){
    var inputText = document.getElementById('title');

    if (inputText.value == "Va\u0161e meno"){
        inputText.style.font = "12px Verdana";
        inputText.style.color = "white";
        inputText.value ="" ;
    }
}

function checkBrowser(){
 
    if ((navigator.appVersion.indexOf("MSIE 6.0") != -1)){
        alert("Milý používateľ, \npoužívate Internet Explorer 6. Z tohto dôvodu sa Vám stránka nemusí zobraziť korektne.");
    }

    
}



