public void handleEvent(Event evt)
{
// Este test es especialmente interesante en BlackBerry
HTMLDocument doc = itsNatDoc.getHTMLDocument();
final HTMLInputElement input1 = (HTMLInputElement)doc.createElement("input");
input1.setAttribute("type","file");
input1.setAttribute("value","HOLA");
doc.getBody().appendChild(input1); // Se usar�n m�todos DOM
input1.setAttribute("value","ADIOS");
final Element div = doc.createElement("div");
doc.getBody().appendChild(div);
HTMLInputElement input2 = (HTMLInputElement)doc.createElement("input");
input2.setAttribute("type","file");
input2.setAttribute("value","Test TestInputFileInsertion");
div.appendChild(input2); // Seguramente se usar� innerHTML
EventListener listener = new EventListenerSerial()
{
public void handleEvent(Event evt)