﻿// File JScript

function apri(nome,larghezza,altezza){
		var finestra=window.open("","finestra","top=20,left=20,toolbar=no,status=no,width="+larghezza+",height="+altezza)
		finestra.document.open("text/html","replace")
		finestra.document.write("<html><head><title>MODUS Arredamenti</title></head><body bgcolor='#000000' leftmargin='0' rightmargin='0' topmargin='0'><table border=0 width=100% height=100%><tr><td align=center valign=center><img src='"+nome+"'></td></tr></table></body></html>")
		finestra.focus()
		finestra.document.close()
}


