// JavaScript Document
var isIE = new Boolean(false);
var isSafari = new Boolean(false);
function ini() {
    //alert(navigator.userAgent);
    if (navigator.userAgent.indexOf("MSIE") > -1) {
        isIE = true;
    } else {
        isIE = false;
    }
    if (navigator.userAgent.indexOf("Safari") > -1) {
        isSafari = true;
    } else {
        isSafari = false;
    }
    we('e1234');
    we('e1267');
    //
    var f = document.forms['adminForm'];
    if (f != null) {
        $(f).addClass('hiddenForm');
    }
}
function we(id) {
    var textprefix = '';
    var prefix = 'm&#97;&#105;' + 'lt&#111;:';
    var path = 'hr' + 'ef' + '=\'';
    var post = 'kr&#101;' + '&#46;' + 'h&#117;';
    var c = '';
    if (id == 'e1234') {
        var core = 'rektori'+'&#46;'+'hiv&#97;t&#97;l' + '&#64;';  
    } else if (id == 'e1267') {
        textprefix = 'Email:';
        var core = 'r&#101;ktor' + '&#64;';
    }
    var fcore = core+post;
    c += textprefix + '<a ' + path + '' + prefix + fcore + '\'>';
    c += fcore;
    c += '<\/a>';
    document.getElementById(id).innerHTML = c;
}
