document.write('') function cix_smajlik(smajl) { var text = document.cix_form.textstary; if (document.selection) { text.focus(); sel = document.selection.createRange(); sel.text = smajl; } else if (text.selectionStart || text.selectionStart == '0') { var startPos = text.selectionStart; var endPos = text.selectionEnd; text.value = text.value.substring(0, startPos) + smajl + text.value.substring(endPos, text.value.length); } else {text.value += smajl;} text.focus(); } function cix_SkryjOkno(co){ document.getElementById(co).style.display='none'; } function cix_ZobrazOkno(co){ document.getElementById(co).style.display='block'; } function cix_kontrola(){ if(document.cix_form.nick.value=="" || document.cix_form.textstary.value==""){ alert("Je nutno vyplnit všechny povinné údaje!(Jsou vyznačeny tučně)"); document.cix_form.nick.focus(); return false; } } function cix_ZobrazInfo(co){ cix_ZobrazOkno(co); document.getElementById(co).style.left = tempX + "px"; document.getElementById(co).style.top = tempY + "px"; } function cix_ZobrazHelp(){ var co = 'help' cix_ZobrazOkno('help'); document.getElementById(co).style.left = tempX + "px"; document.getElementById(co).style.top = tempY + "px"; } var IE = document.all?true:false if (!IE) document.captureEvents(Event.MOUSEMOVE) document.onmousemove = getMouseXY; var tempX = 0 var tempY = 0 function getMouseXY(e) { if (IE) { tempX = event.clientX + document.body.scrollLeft tempY = event.clientY + document.body.scrollTop } else { tempX = e.pageX tempY = e.pageY } if (tempX < 0){tempX = 0} if (tempY < 0){tempY = 0} return true } function init2() { tooltips_u_edit = new tooltip("tooltips_u_edit", "ELEMENTS=A, TR, TD, H1, H2, H3, H4, SPAN", "tooltips_styl", "", 500, 300, 85); } /* ********************************************** ** Cotojatka v. 0.9 Beta | 16. 12. 2005 ** ** (c) Jaroslav "Dero" Polakovic, 2005 ** ********************************************** */ function sFunc() { if (IE) { oldBodyText = document.body.innerHTML; reg = //g; newBodyText = newBodyText.replace(reg, '/ACRONYM>'); document.body.innerHTML = newBodyText;} init2();} var tooltip; var timeout; var IE = document.all?true:false; var IEStd; if (IE) if (document.compatMode) if (document.compatMode != "BackCompat") IEStd = 1; var Opera = navigator.userAgent.indexOf("Opera") > -1 ? true : false; var UAVer = navigator.appVersion; var Opera7 = navigator.userAgent.indexOf("Opera 7") > -1 ? true : false; if (Opera) IE = false; if (typeof document.attachEvent!='undefined') { window.attachEvent('onload',sFunc); document.attachEvent('onmousemove',getMouseXY);} else { window.addEventListener('load',sFunc,false); document.addEventListener('mousemove',getMouseXY,false);} var X = 0; var Y = 0; var shown; var currentTooltip; var docX = document.offsetWidth; var docY = document.offsetHeight; var minY, maxY, minX, maxX; var all = document.all ? document.all : document.getElementsByTagName('*'); function getMouseXY(e) { if (IE) { tempX = event.clientX + (document.body.scrollLeft ? document.body.scrollLeft : document.documentElement.scrollLeft); tempY = event.clientY + (document.body.scrollTop ? document.body.scrollTop : document.documentElement.scrollTop);} else { tempX = e.pageX tempY = e.pageY } if (tempX < 0){tempX = 0} if (tempY < 0){tempY = 0} X = tempX; Y = tempY; if ((X <= minX || X >= maxX) || (Y <= minY || Y >= maxY) && currentTooltip) { hideTooltip();} else { if (currentTooltip) { showTooltip();} } return true } function findPosX(obj) { var curleft = 0; if(obj.offsetParent) while(1) { curleft += obj.offsetLeft; if(!obj.offsetParent) break; obj = obj.offsetParent;} else if(obj.x) curleft += obj.x; return curleft;} function findPosY(obj) { var curtop = 0; if(obj.offsetParent) while(1) { curtop += obj.offsetTop; if(!obj.offsetParent) break; obj = obj.offsetParent;} else if(obj.y) curtop += obj.y; return curtop;} function hideTooltip() { window.clearTimeout(timeout); if ((X <= minX || X >= maxX) || (Y <= minY || Y >= maxY) && currentTooltip) { if (currentTooltip) currentTooltip.style.visibility = 'hidden'; currentTooltip = 0; shown = 0;} } function showIt(){ if (currentTooltip.style && shown) currentTooltip.style.visibility = 'visible';} function showTooltip(objTooltip, objOver, text, delay, maxWidth) { if (delay){ timeout = setTimeout("showIt()", delay);} if (!objTooltip && currentTooltip) { objTooltip = currentTooltip;} if (!objTooltip) return; if (text) objTooltip.innerHTML = text; if (IE) { if (maxWidth && objTooltip.offsetWidth > maxWidth) objTooltip.style.width = maxWidth + "px"; if (maxWidth && objTooltip.offsetWidth <= maxWidth) objTooltip.style.width = "auto";} if (objOver) { minX = findPosX(objOver); minY = findPosY(objOver); maxX = minX + objOver.offsetWidth + 3; maxY = minY + objOver.offsetHeight + 3;} if (X + objTooltip.offsetWidth < document.body.offsetWidth-10) { objTooltip.style.left = eval(X + 8) + "px";} else { objTooltip.style.left = eval(X - 8 - objTooltip.offsetWidth) + "px";} if (Y - objTooltip.offsetHeight > 10) { objTooltip.style.top = eval(Y - objTooltip.offsetHeight) - 8 + "px";} else { objTooltip.style.top = Y + "px";} currentTooltip = objTooltip; shown = 1; if (delay === 0) showIt(); document.getElementById } function applyTooltip(obj, applyRules, tName, tClassName, tDelay, tMaxWidth) { if (!tDelay) tDelay = 0; if (!tMaxWidth) tMaxWidth = 0; var applyElements, applyClasses, currentElement, currentObject; if (applyRules.substring(0, 9).toUpperCase() == "ELEMENTS=") { applyElements = applyRules.substring(9).toUpperCase()+",";} if (applyRules.substring(0, 8).toUpperCase() == "CLASSES=") { applyClasses = applyRules.substring(8).toUpperCase()+",";} if (!applyElements) { if (applyRules == 'default') applyElements = "ACRONYM,ABBR,"; if (applyRules == '*') applyElements = "*"; if (!applyElements) applyElements = applyRules.toUpperCase()+",";} if (!applyClasses) applyClasses = "*"; for (var element = 0; element < all.length; element++) { if (IE) { all[element].setAttribute("onmouseout", null); all[element].setAttribute("onmousemove", null);} if (Opera7) { all[element].onmousemove = null; all[element].onmouseout = null;} clBranch = 0; if (all[element].className != "") { classes = all[element].className.toUpperCase().split(" "); i = 0; while (classes[i]) { if (applyClasses.indexOf(classes[i]+",") > -1) clBranch = 1; i++;} } if ((applyElements == "*" || applyElements.indexOf(all[element].tagName+",") > -1 || clBranch) && (all[element].getAttribute('title') != null && all[element].getAttribute('title') != "")) { oldTitle = all[element].getAttribute('title'); onMouseMove = ""; onMouseOut = ""; if (!IE && !Opera7) { if (all[element].getAttribute("onmousemove")) { if (all[element].getAttribute("onmousemove").indexOf("showTooltip") == -1) { onMouseMove = all[element].getAttribute("onmousemove") + "; " + "showTooltip("+tName+".tooltip, this, '"+all[element].getAttribute('title')+"', "+tDelay+", "+tMaxWidth+")";} } else { onMouseMove = "showTooltip("+tName+".tooltip, this, '"+all[element].getAttribute('title')+"', "+tDelay+", "+tMaxWidth+")";} if (all[element].getAttribute("onmouseout")) { if (all[element].getAttribute("onmousemove").indexOf("showTooltip") == -1) onMouseOut = all[element].getAttribute("onmouseout") + "; " + "hideTooltip()";} else { onMouseOut = "hideTooltip()";} all[element].setAttribute("title", " "); if (onMouseMove) all[element].setAttribute("onmousemove", onMouseMove); if (onMouseOut) all[element].setAttribute("onmouseout", onMouseOut);} else { all[element].setAttribute("title", ""); currObject = all[element]; all[element].reference = currObject; all[element].onmouseover = new Function( "showTooltip("+tName+".tooltip, all["+element+"].reference, '"+oldTitle+"', "+tDelay+", "+tMaxWidth+");" ); all[element].onmouseout = new Function("hideTooltip()") } if (tClassName) { if (all[element].className) { all[element].className = tClassName;} else { all[element].className = all[element].className + " " + tClassName;} } } } } function tooltip(tName, appliesTo, className, targetClassName, tDelay, tMaxWidth, tOpacity) { if (appliesTo) { this.apply = appliesTo } else { this.apply = "default" } this.name = tName; if (targetClassName) this.tClassName = targetClassName; if (tDelay) this.delay = tDelay; if (tMaxWidth) this.maxWidth = tMaxWidth; if (tOpacity) { this.opacity = tOpacity;} else { this.opacity = 100;} this.tooltip = document.createElement('DIV'); if (className) { this.tooltip.className = className;} else { this.tooltip.style.cssText = "border: 1px solid #bbb; background: #fff; padding: 2px 4px; font-size: 80%; font-family: sans-serif;" } this.tooltip.style.visibility = 'hidden'; this.tooltip.style.position = 'absolute'; this.tooltip.style.top = 0; document.getElementsByTagName('BODY')[0].appendChild(this.tooltip); if (tOpacity && tOpacity < 100) { if (IE) { this.tooltip.style.filter="alpha(opacity="+tOpacity+")";} else { this.tooltip.style.opacity=eval("'0."+tOpacity+"'"); this.tooltip.style.MozOpacity=eval("'0."+tOpacity+"'"); this.tooltip.style.KhtmlOpacity=eval("'0."+tOpacity+"'");} } if (!IE && this.maxWidth) this.tooltip.style.maxWidth = this.maxWidth + "px"; applyTooltip(this.tooltip, this.apply, this.name, this.tClassName, this.delay, this.maxWidth);} document.write('Reklama05.2.2012(18:38)Kvalitní nábytok a stoličky!a19.12.2007(15:33) f reagovat<>\"\'|20.1.2008(11:28) <>\"\' reagovatzrtuzrtuztu28.1.2008(20:47) reakce na <>\"\' (2): utz reagovatmzk28.1.2008(20:48) reakce na <>\"\' (2): reakce na a (1): reagovat Jméno: Heslo: Mail: Web: Vzkaz: Spam kontrola: napište číslo jedna Smajlíci: další... skryj... [X] Nápověda [b] tučné [/b] [u] podtržení [/u] [i] kurzíva [/i] [a http://neco.cz]popisek[/a] Slovo začínající http:// se mění na odkaz RSS tohoto článku: Komentáře od CompiNeX.cz');var provedeno = 0; function load(){ if(provedeno==0){ cix_hide_heslo(); document.getElementById('cix-spam_kontrola').style.display = 'none'; document.getElementById('cix-anti_spam').value = '1'; provedeno = 1; } } function cix_show_heslo() { var div = document.getElementById('cixheslo'); if (window.opera) div.style.display = 'table-row'; else if (navigator.appName!='Microsoft Internet Explorer') div.style.display = 'table-row'; else div.style.display = 'block'; } function cix_hide_heslo() { document.getElementById('cixheslo').style.display = 'none'; } function cix_zjistinick(xx) { } setInterval('load()', 1000);