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