//webcam

function webcam() {
 aPopUp = window.open("webcam.php3","Webcam","toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width=340,height=400");
}





// TESTOVANI PROHLIZECE

prohlizec = navigator.appName;
verze = parseInt(navigator.appVersion);
if ((prohlizec == "Netscape" && verze >= 3) || (prohlizec == "Microsoft Internet Explorer" && verze >= 4)) testing=1;
else testing=0;


// PRAVE TLACITKO MYSI
/*
function click() {
if (event.button==2) {
alert('© HoNzA & Fotoateliér J+V');
}
}
document.onmousedown=click


*/

// TEXT VE STAVOVEM RADKU

    // CHANGE THESE TO ALTER THE SCROLL SPEED

    ScrollSpeed = 120;  // milliseconds between scrolls

    ScrollChars = 1;    // chars scrolled per time period

    function SetupTicker() {

    // add space to the left of the message

    msg = "        .  .  .          ";

    // PUT YOUR MESSAGE HERE, USE += TO ADD THEM TOGETHER

    msg += "    Fotoateliér J+V Tylšarovi    ";

    msg += "    .  .  .    ";

    msg += "    S.K.Neumanna 112, Kralupy nad Vltavou    ";

  msg += "    .  .  .    ";

    msg += "    tel. 315 726 791    ";

  msg += "    .  .  .    ";

    msg += "    e-mail: info@jvfoto.cz    ";
    // this starts the ticker

    RunTicker();

    }

    function RunTicker() {

    window.setTimeout('RunTicker()',ScrollSpeed);

    window.status = msg;

    msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);

    }

    // Start the ticker code

    SetupTicker();

<!-- end -->

