home *** CD-ROM | disk | FTP | other *** search
-
- function Swap(num)
- {
- var x = document.getElementById('text' + num).style.display;
- if (x == 'block') {
- document.getElementById('text' + num).style.display = 'none';
- document.getElementById('obr' + num).style.display = 'none';
- document.getElementById('ikona' + num).src = '../vyrezy/plus.gif';
- }
- else {
- document.getElementById('text' + num).style.display = 'block';
- document.getElementById('obr' + num).style.display = 'block';
- document.getElementById('ikona' + num).src = '../vyrezy/minus.gif';
- }
- }
-
- function instalovat(prog)
- {
- var Cesta = document.location;
- Cesta = Cesta.toString();
- var index = Cesta.lastIndexOf("/");
- Cesta = Cesta.substring(0,index);
-
- index = Cesta.lastIndexOf("/");
- Cesta = Cesta.substring(0,index);
-
- var z = prog.toString();
- z = z.substring(0,1)
- if (z=="/") {
- Program = Cesta + prog;
- } else {
- Program = Cesta + "/" + prog;
- }
-
- // alert(Program)
-
- window.open(Program, "", "")
- }
-