1
0
This repository has been archived on 2023-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
dtux__serveur-vote-lalis/js/lalis.js

19 lines
461 B
JavaScript
Raw Normal View History

2021-10-14 17:58:21 +02:00
function open_window( path, name, params )
{
var fenetre=window.open( path, name, params );
fenetre.focus();
return fenetre
}
function horaires( )
{
var params = "top=100,left=100,width=800,height=300,dialog=no,close=yes,modal=yes,dependent=yes,scrollbars=no";
var w = open_window( "", "",params);
w.document.open();
w.document.write("<h2>Horaires</h2>mardi 17h - 20h<br />mercredi 17h - 20h<br />");
//w.document.close();
}