function dotextfield(tyyppi,arvo,nimi) {
  if (navigator.appName == "Netscape") {
    arvo = (arvo-5); 
    document.write("<input type=\"" + tyyppi + "\" class=\"input\" name=\"" + nimi + "\" size=\"" + arvo + "\">");
  }
  else
    document.write("<input type='" + tyyppi + "' class='input' name='" + nimi + "' size='" + arvo + "'>");
}

function dotextfield2(tyyppi,arvo,nimi,value) {
  if (navigator.appName == "Netscape") {
    arvo = (arvo-5); 
    document.write("<input type=\"" + tyyppi + "\" class=\"input\" name=\"" + nimi + "\" size=\"" + arvo + "\" value=\"" + value + "\">");
  }
  else
    document.write("<input type='" + tyyppi + "' class='input' name='" + nimi + "' size='" + arvo + "' value='" + value + "'>");
}

if(document.getElementById){
	var ns6 = (document.all)?0:1;
}
var ns = (document.layers)?1:0;
var ie = (document.all)?1:0;
var ie4 = (navigator.appVersion.indexOf('MSIE 4')>0)?1:0;
var mac=(navigator.userAgent.indexOf("mac")!=-1);

