function aktywuj_more() { $$('INPUT[name=more-refnumbers]').each(function(el){ el.addEvent('click', function(){ //alert(this.getParent().nextSibling.nodeName); if (this.getParent().nextSibling.nodeName!='#text') el2 = this.getParent().nextSibling; else el2 = this.getParent().nextSibling.nextSibling; el2.style.display = "block"; this.style.display = "none"; }); }); } function fix_form() { if (document.getElementById('subscribe')) { document.getElementById('subscribe').action='formularz.php'; document.getElementById('subscribe').onsubmit=function(){ return validateForm();} if (document.getElementById('norefnumberbutton')) document.getElementById('norefnumberbutton').onclick=function(){ document.getElementById('form-norefnumber').style.display = "block"; document.getElementById('form-refnumber').style.display = "none"; } aktywuj_more(); var cmbo = document.getElementById('combo-produkcja'); if (cmbo) { var x = new Date(); var rok = x.getFullYear(); for (i = 1980; i<=rok; i++) { var n = document.createElement("option"); n.setAttribute('value',i); var txt = document.createTextNode("" + i); n.appendChild(txt); var x = cmbo.insertBefore(n,cmbo.firstChild.nextSibling); } //endfor } //endif } } window.addEvent("load",function(){ var dymki = new Tips($$("acronym"), { onShow: function(toolTip) {this.efekt.start(0,1);}, onHide: function(toolTip) {this.efekt.start(1,0);} }); dymki.efekt = new Fx.Style(dymki.toolTip,"opacity",{wait: false}); fix_form(); });