function abc()
{
var text = document.all.tags("INPUT");
for (i=0; i<text.length;i++)
{
var name = text(i).name;
document.writeln(name);
}
}