Perchè la funzione close() non funge?codice:<script> heightiframe = "350"; widthiframe = "100%"; function vai(form) { document.getElementById("sito").innerHTML = "<iframe src="+form+" height="+heightiframe+" width="+widthiframe+"></iframe>"; } function close() { document.getElementById("sito").innerHTML = "nessun sito visualizzato"; } </script> <form name="browser"> <input type="text" name="indirizzo" value="http://www.indirizzo.it"> <input type="button" value="vai!" onclick="vai(document.browser.indirizzo.value)"> <input type="button" value="close" onclick="close()"> </form> <div id="sito"></div>