function openwindow_m(item,larghezza,altezza)
{
largh = Number(larghezza) + 50;
alte = Number(altezza) + 140;
var pluto = window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+largh+',height='+alte+'');

creaHtml(pluto,item,larghezza,altezza);
}

function creaHtml(pippo,paperino,larghezza,altezza)
{
pippo.document.writeln('<HTML><HEAD><TITLE>Elaboration Motor Sport sagl</TITLE></HEAD>');
pippo.document.writeln('<BODY bgcolor="#000000"><DIV align="center">');
pippo.document.writeln('<img src="http://www.elaborationmotorsport.com/Immagini/titolo.jpg"><br>');
pippo.document.writeln('<EMBED SRC="' + paperino + '" WIDTH="' + larghezza + '" HEIGHT="' + altezza + '" border="1"><br>');
pippo.document.writeln('<font size="-1" color="white">Qualora non apparisse l\'immagine,<br>');
pippo.document.writeln('installare il programma QuickTime dal sito: <a href="http://www.apple.com/quicktime" target="_blank"><font color="orange">www.apple.com/quicktime</font></a></font><br>');
pippo.document.write('<FORM><INPUT TYPE="BUTTON" VALUE="- Chiudi finestra -" onClick="window.close()"></FORM></DIV></BODY></HTML>');
pippo.document.writeln('</FORM></DIV></BODY></HTML>');
pippo.document.close();
}