function applyCss(){
var inputObjs = document.getElementsByTagName("input");
try{
for(x in inputObjs){
if(inputObjs[x].type == "text" || inputObjs[x].type == "password")
inputObjs[x].className = "inputtext";
if(inputObjs[x].type == "button" || inputObjs[x].type =="submit" ||
inputObjs[x].type == "reset")
inputObjs[x].className = "inputbutton" ;
}
}
catch(err){
alert(err.description);
}
}
var inputObjs = document.getElementsByTagName("input");
try{
for(x in inputObjs){
if(inputObjs[x].type == "text" || inputObjs[x].type == "password")
inputObjs[x].className = "inputtext";
if(inputObjs[x].type == "button" || inputObjs[x].type =="submit" ||
inputObjs[x].type == "reset")
inputObjs[x].className = "inputbutton" ;
}
}
catch(err){
alert(err.description);
}
}