var browserVer = parseInt(navigator.appVersion);
if(navigator.appName=="Netscape" && browserVer < "5"){
  document.write("<INPUT TYPE='password'  NAME='password' SIZE='8' maxlength='15' class='textinputsearch'>");
} else if(navigator.appName=="Netscape" && browserVer >= "5" && version == "" ){
  document.write("<INPUT class='textinput' TYPE='password'  NAME='password' SIZE='12' maxlength='15' VALUE=''>");
} else if(navigator.appName=="Netscape" && browserVer >= "5" && version != "" ){
  document.write("<INPUT class='textinput' TYPE='password'  NAME='password' SIZE='6' maxlength='15' VALUE=''>");			  
} else {
  document.write("<INPUT class='textinput' TYPE='password'  NAME='password' SIZE='12' maxlength='15' VALUE=''>");			  
}
