function init(){var B=document.getElementsByTagName("input");for(var A=0;A<B.length;A++){if(B[A].type=="text"){B[A].setAttribute("rel",B[A].defaultValue);B[A].onfocus=function(){if(this.value==this.getAttribute("rel")){this.value=""}else{return false}};B[A].onblur=function(){if(this.value==""){this.value=this.getAttribute("rel")}else{return false}};B[A].ondblclick=function(){this.value=this.getAttribute("rel")}}}}if(document.childNodes){window.onload=init};
