<html>
<head>
<script>
alert("Ciao ?");
name = window.prompt( "Chi sei?", "" );
document.writeln( "<h1>Hello, " + name + ", welcome to JavaScript programming!</h1>" );
numero = window.prompt( "Inserisci un numero ...", "" );
if ( numero >= 7 ){
document.write( "<h1>Sei andato in palazzo ...</h1>" );
delay(2000);
alert ("Ripaga un euro");
}
else
{
document.write( "<h1>Bravo ...</h1>" );
}
//document.writeln("Ma funziona? \"Welcome\" to<br> JavaScript <br> Programming!");
</script>
</head>
<body>
</body>
</html>