function BlurLinks(){ if (!document.layers) { //onclick style fader input=document.getElementsByTagName('input'); for(i=0;i< input.length;i++) { if (input[i].type == "text" || input[i].type == "password") input[i].onfocus=new Function("this.style.backgroundImage='url(http://pavel.networkerz.de:12080/networkerz/pix/nz_color.gif)';"); if (input[i].type == "text" || input[i].type == "password") input[i].onblur=new Function("this.style.backgroundImage='none';"); } //onclick style fader /*input=document.getElementsByTagName('textarea'); for(i=0;i< input.length;i++) { input[i].onfocus=new Function("this.style.backgroundImage='url(http://pavel.networkerz.de:12080/networkerz/pix/nz_color.gif)';"); input[i].onblur=new Function("this.style.backgroundImage='none';"); }*/ //onclick style fader if(document.all && !document.getElementsById) { input=document.getElementsByTagName('input'); for(i=0;i< input.length;i++) { if (input[i].type == "checkbox") input[i].style.border='0px'; } } } }