<!--
/*By George Chiang (JK JavaScript site www.abstract.simplenet.com)
Credit must stay intact for use*/
function tile(bgname){ 
win2=window.open("","","width=380,height=380") /* qui definisci la larghezza e l'altezza della finestrella */
if (win2){
win2.focus()
win2.document.open()
win2.document.write("<head><title>"+bgname+"</title></head>")
win2.document.write("<body background="+'"'+bgname+'"'+">") 
win2.document.write("</body>")
win2.document.close()
}
else
alert("Insuccesso nell'apertura della finestra!")
}
//-->