1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| <script language="javascript" type="text/javascript">
function Popup()
{
setup='toolbar=no,location=no,directories=no,status=no,menubar=no,width=250,height=100'
setup += 'scrollbars=no,resizable=no'
pop = window.open ("","pop",setup)
pop.document.write('<head>');
pop.document.write('<Title>');
pop.document.write('Patientez...');
pop.document.write('</Title>');
pop.document.write('<script language="javascript">');
pop.document.write('</');
pop.document.write('script>');
pop.document.write('</head>');
pop.document.write('<body bgcolor=#833750>');
pop.document.write('<center><h3><font color="white">Votre média se charge...<br><font color="black" size="3">Veuillez patientez... Merci</font></h3></center>');
pop.document.write('<center><h5><font color="white">(Cette fenêtre se fermera toute seule)</B></h5></center>');
pop.document.write('</body>');
}
</script> |