/* * * * * * * * * * * * * * * * * * * * * * * * * * * * *\
 *                                                       *
 *   JavaScript Dokument                                 *
 *     » Autor: Timo Steinbrink                          *
 *     » Version: 1.5.0                                  *
 *     » Datum: 15.06.2011                               *
 *     » Copyright (c) by Timo Steinbrink, Xboxdome.de   *
 *                                                       *
\* * * * * * * * * * * * * * * * * * * * * * * * * * * * */

         var     buttonPrevious = "http://www.xboxdome.de/design/dome/gallery-previous.gif",
                 buttonNext = "http://www.xboxdome.de/design/dome/gallery-next.gif",
                 file,
                 source;


         function showbox_init()
                 {
                         document.getElementById('showbox-screen-1').style.border = "2px solid #94C11C";
                         document.getElementById('showbox-next-top').src = buttonNext;
                         document.getElementById('showbox-next-bottom').src = buttonNext;
                         document.getElementById('showbox-previous-top').src = buttonPrevious;
                         document.getElementById('showbox-previous-bottom').src = buttonPrevious;
                         showbox_check_buttons();
                         showbox_check_firstPic();
                 }

         function showbox_check_firstPic()
                 {
                         if(!Screen_1.complete)
                                 {
                                         window.setTimeout("showbox_check_firstPic();", 100);
                                 }
                         else
                                 {
                                         showbox_firstPic();
                                 }
                 }

         function showbox_firstPic()
                 {
                         document.getElementById('showbox-image').src = Screen_1.src;
                         file = Screen_1.src;
                         source = file.substring(39,(file.length-4));
                         document.getElementById('showbox-fullsizelink').href = "javascript: popupwin('http://www.xboxdome.de/gallerypic.php?gallery=" + gallery + "&file=" + source + "', '" + (eval("Screen_" + picNumber + ".width")) + "', '" + (eval("Screen_" + picNumber + ".height")) + "', 0);";
                 }

         function showbox_check_picNumber()
                 {
                         if(picNumber > picCount)
                                 {
                                         location.href = pageNext.replace("&amp;","&") + "#gallery";
                                         return false;
                                 }
                         else if(picNumber < 1)
                                 {
                                         location.href = pagePrevious.replace("&amp;","&") + "#gallery";
                                         return false;
                                 }
                         else
                                 {
                                         return true;
                                 }
                 }

         function showbox_check_buttons()
                 {
                         if(picNumber == 1 && picCount == 1 && pageNext == null && pagePrevious == null)
                                 {
                                         document.getElementById('showbox-next-top').src = "";
                                         document.getElementById('showbox-next-bottom').src = "";
                                         document.getElementById('showbox-next-top').width = "0";
                                         document.getElementById('showbox-next-bottom').width = "0";
                                         document.getElementById('showbox-next-top').height = "0";
                                         document.getElementById('showbox-next-bottom').height = "0";

                                         document.getElementById('showbox-previous-top').src = "";
                                         document.getElementById('showbox-previous-bottom').src = "";
                                         document.getElementById('showbox-previous-top').width = "0";
                                         document.getElementById('showbox-previous-bottom').width = "0";
                                         document.getElementById('showbox-previous-top').height = "0";
                                         document.getElementById('showbox-previous-bottom').height = "0";
                                 }
                         else if(picNumber == picCount && pageNext == null)
                                 {
                                         document.getElementById('showbox-next-top').src = "";
                                         document.getElementById('showbox-next-bottom').src = "";
                                         document.getElementById('showbox-next-top').width = "0";
                                         document.getElementById('showbox-next-bottom').width = "0";
                                         document.getElementById('showbox-next-top').height = "0";
                                         document.getElementById('showbox-next-bottom').height = "0";

                                         document.getElementById('showbox-previous-top').src = buttonPrevious;
                                         document.getElementById('showbox-previous-bottom').src = buttonPrevious;
                                         document.getElementById('showbox-previous-top').width = "63";
                                         document.getElementById('showbox-previous-bottom').width = "63";
                                         document.getElementById('showbox-previous-top').height = "13";
                                         document.getElementById('showbox-previous-bottom').height = "13";
                                 }
                         else if(picNumber == 1 && pagePrevious == null)
                                 {
                                         document.getElementById('showbox-next-top').src = buttonNext;
                                         document.getElementById('showbox-next-bottom').src = buttonNext;
                                         document.getElementById('showbox-next-top').width = "59";
                                         document.getElementById('showbox-next-bottom').width = "59";
                                         document.getElementById('showbox-next-top').height = "13";
                                         document.getElementById('showbox-next-bottom').height = "13";

                                         document.getElementById('showbox-previous-top').src = "";
                                         document.getElementById('showbox-previous-bottom').src = "";
                                         document.getElementById('showbox-previous-top').width = "0";
                                         document.getElementById('showbox-previous-bottom').width = "0";
                                         document.getElementById('showbox-previous-top').height = "0";
                                         document.getElementById('showbox-previous-bottom').height = "0";
                                 }
                         else
                                 {
                                         document.getElementById('showbox-next-top').src = buttonNext;
                                         document.getElementById('showbox-next-bottom').src = buttonNext;
                                         document.getElementById('showbox-next-top').width = "59";
                                         document.getElementById('showbox-next-bottom').width = "59";
                                         document.getElementById('showbox-next-top').height = "13";
                                         document.getElementById('showbox-next-bottom').height = "13";

                                         document.getElementById('showbox-previous-top').src = buttonPrevious;
                                         document.getElementById('showbox-previous-bottom').src = buttonPrevious;
                                         document.getElementById('showbox-previous-top').width = "63";
                                         document.getElementById('showbox-previous-bottom').width = "63";
                                         document.getElementById('showbox-previous-top').height = "13";
                                         document.getElementById('showbox-previous-bottom').height = "13";
                                 }
                 }

         function showbox_next()
                 {
                         picNumber++;
                         if(showbox_check_picNumber())
                                 {
                                         showbox_check_buttons();
                                         document.getElementById('showbox-screen-' + (picNumber-1)).style.border = "2px solid #2B2B2B";
                                         document.getElementById('showbox-image').src = eval("Screen_" + picNumber + ".src");
                                         file = eval("Screen_" + picNumber + ".src");
                                         source = file.substring(39,(file.length-4));
                                         document.getElementById('showbox-fullsizelink').href = "javascript: popupwin('http://www.xboxdome.de/gallerypic.php?gallery=" + gallery + "&file=" + source + "', '" + (eval("Screen_" + picNumber + ".width")) + "', '" + (eval("Screen_" + picNumber + ".height")) + "', 0);";
                                         document.getElementById('showbox-screen-' + picNumber).style.border = "2px solid #94C11C";
                                 }
                 }

         function showbox_previous()
                 {
                         picNumber--;
                         if(showbox_check_picNumber())
                                 {
                                         showbox_check_buttons();
                                         document.getElementById('showbox-screen-' + (picNumber+1)).style.border = "2px solid #2B2B2B";
                                         document.getElementById('showbox-image').src = eval("Screen_" + picNumber + ".src");
                                         file = eval("Screen_" + picNumber + ".src");
                                         source = file.substring(39,(file.length-4));
                                         document.getElementById('showbox-fullsizelink').href = "javascript: popupwin('http://www.xboxdome.de/gallerypic.php?gallery=" + gallery + "&file=" + source + "', '" + (eval("Screen_" + picNumber + ".width")) + "', '" + (eval("Screen_" + picNumber + ".height")) + "', 0);";
                                         document.getElementById('showbox-screen-' + picNumber).style.border = "2px solid #94C11C";
                                 }
                 }

         function showbox_picture(selectedPicNumber)
                 {
                         document.getElementById('showbox-screen-' + picNumber).style.border = "2px solid #2B2B2B";
                         picNumber = selectedPicNumber;
                         document.getElementById('showbox-image').src = eval("Screen_" + picNumber + ".src");
                         file = eval("Screen_" + picNumber + ".src");
                         source = file.substring(39,(file.length-4));
                         document.getElementById('showbox-fullsizelink').href = "javascript: popupwin('http://www.xboxdome.de/gallerypic.php?gallery=" + gallery + "&file=" + source + "', '" + (eval("Screen_" + picNumber + ".width")) + "', '" + (eval("Screen_" + picNumber + ".height")) + "', 0);";
                         document.getElementById('showbox-screen-' + picNumber).style.border = "2px solid #94C11C";
                         showbox_check_buttons();
                 }

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * *\
 *                                                       *
 *   JavaScript Dokument                                 *
 *     » Autor: Timo Steinbrink                          *
 *     » Version: 1.5.0                                  *
 *     » Datum: 15.06.2011                               *
 *     » Copyright (c) by Timo Steinbrink, Xboxdome.de   *
 *                                                       *
\* * * * * * * * * * * * * * * * * * * * * * * * * * * * */
