/*==================================================*
 $Id: slideshow.js,v 1.16 2003/10/14 12:39:00 pat Exp $
 Copyright 2000-2003 Patrick Fitzgerald
 http://slideshow.barelyfitz.com/

 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *==================================================*/

// There are two objects defined in this file:
// "slide" - contains all the information for a single slide
// "slideshow" - consists of multiple slide objects and runs the slideshow

//==================================================
// slide object
//==================================================
function slide(src,link,text,target,attr) {
  // This is the constructor function for the slide object.
  // It is called automatically when you create a new slide object.
  // For example:
  // s = new slide();

  // Image URL
  this.src = src;

  // Link URL
  this.link = link;

  // Text to display
  this.text = text;

  // Name of the target window ("_blank")
  this.target = target;

  // Custom duration for the slide, in milliseconds.
  // This is an optional parameter.
  // this.timeout = 7000

  // Attributes for the target window:
  // width=n,height=n,resizable=yes or no,scrollbars=yes or no,
  // toolbar=yes or no,location=yes or no,directories=yes or no,
  // status=yes or no,menubar=yes or no,copyhistory=yes or no
  // Example: "width=200,height=300"
  this.attr = attr;

  // Create an image object for the slide
  if (document.images) {
    this.image = new Image();
  }

  // Flag to tell when load() has already been called
  this.loaded = false;

  //--------------------------------------------------
  this.load = function() {
    // This method loads the image for the slide

    if (!document.images) { return; }

    if (!this.loaded) {
      this.image.src = this.src;
      this.loaded = true;
    }
  }

  //--------------------------------------------------
  this.hotlink = function() {
    // This method jumps to the slide's link.
    // If a window was specified for the slide, then it opens a new window.

    var mywindow;

    // If this slide does not have a link, do nothing
    if (!this.link) return;

    // Open the link in a separate window?
    if (this.target) {

      // If window attributes are specified,
      // use them to open the new window
      if (this.attr) {
        mywindow = window.open(this.link, this.target, this.attr);
  
      } else {
        // If window attributes are not specified, do not use them
        // (this will copy the attributes from the originating window)
        mywindow = window.open(this.link, this.target);
      }

      // Pop the window to the front
      if (mywindow && mywindow.focus) mywindow.focus();

    } else {
      // Open the link in the current window
      location.href = this.link;
    }
  }
}

//==================================================
// slideshow object
//==================================================
function slideshow( slideshowname ) {
  // This is the constructor function for the slideshow object.
  // It is called automatically when you create a new object.
  // For example:
  // ss = new slideshow("ss");

  // Name of this object
  // (required if you want your slideshow to auto-play)
  // For example, "SLIDES1"
  this.name = slideshowname;

  // When we reach the last slide, should we loop around to start the
  // slideshow again?
  this.repeat = true;

  // Number of images to pre-fetch.
  // -1 = preload all images.
  //  0 = load each image is it is used.
  //  n = pre-fetch n images ahead of the current image.
  // I recommend preloading all images unless you have large
  // images, or a large amount of images.
  this.prefetch = -1;

  // IMAGE element on your HTML page.
  // For example, document.images.SLIDES1IMG
  this.image;

  // contains table row to set height
  this.row;
  this.blank = 1;
  // ID of a DIV element on your HTML page that will contain the text.
  // For example, "slides2text"
  // Note: after you set this variable, you should call
  // the update() method to update the slideshow display.
  this.textid;

  // TEXTAREA element on your HTML page.
  // For example, document.SLIDES1FORM.SLIDES1TEXT
  // This is a depracated method for displaying the text,
  // but you might want to supply it for older browsers.
  this.textarea;

  // Milliseconds to pause between slides.
  // Individual slides can override this.
  this.timeout = 3000;

  // Hook functions to be called before and after updating the slide
  // this.pre_update_hook = function() { }
  // this.post_update_hook = function() { }

  // These are private variables
  this.slides = new Array();
  this.current = 0;
  this.timeoutid = 0;

  //--------------------------------------------------
  // Public methods
  //--------------------------------------------------
  this.add_slide = function(slide) {
    // Add a slide to the slideshow.
    // For example:
    // SLIDES1.add_slide(new slide("s1.jpg", "link.html"))
   if ((slide.src == "../images/blank.gif" || slide.src == "./images/blank.gif") && this.slides.length != 0) { return ; }
  
    var i = this.slides.length;
    if (slide.src != "../images/blank.gif" || slide.src != "./images/blank.gif") {  this.blank = -1; }
    
    // Prefetch the slide image if necessary
    if (this.prefetch == -1) {
      slide.load();
    }

    this.slides[i] = slide;
    
  }

  //--------------------------------------------------
  this.play = function(timeout) {
    // This method implements the automatically running slideshow.
    // If you specify the "timeout" argument, then a new default
    // timeout will be set for the slideshow.
  if (this.slides.length != 0)  {
     // Make sure we're not already playing
    this.pause();
  
    // If the timeout argument was specified (optional)
    // then make it the new default
    if (timeout) {
      this.timeout = timeout;
    }
  
    // If the current slide has a custom timeout, use it;
    // otherwise use the default timeout
    if (typeof this.slides[ this.current ].timeout != 'undefined') {
      timeout = this.slides[ this.current ].timeout;
    } else {
      timeout = this.timeout;
    }
    
    if (this.blank == -1) {
      this.row.height = "440"; 
      
      
      
      
   } else {
      this.row.height = "1";
   }
    
    // After the timeout, call this.loop()
    this.timeoutid = setTimeout( this.name + ".loop()", timeout);
  }
}

  //--------------------------------------------------
  this.pause = function() {
    // This method stops the slideshow if it is automatically running.
  
    if (this.timeoutid != 0) {

      clearTimeout(this.timeoutid);
      this.timeoutid = 0;

    }
  }

  //--------------------------------------------------
  this.update = function() {
    // This method updates the slideshow image on the page

    // Make sure the slideshow has been initialized correctly
    if (! this.valid_image()) { return; }
    if (this.slides.length == 0)  { 
    
    
    
    }

    // Call the pre-update hook function if one was specified
    if (typeof this.pre_update_hook == 'function') {
      this.pre_update_hook();
    }

    // Convenience variable for the current slide
    var slide = this.slides[ this.current ];

    // Determine if the browser supports filters
    var dofilter = false;
    if (this.image &&
        typeof this.image.filters != 'undefined' &&
        typeof this.image.filters[0] != 'undefined') {

      dofilter = true;

    }

    // Load the slide image if necessary
    slide.load();
  
    // Apply the filters for the image transition
    if (dofilter) {

      // If the user has specified a custom filter for this slide,
      // then set it now
      if (slide.filter &&
          this.image.style &&
          this.image.style.filter) {

        this.image.style.filter = slide.filter;

      }
      this.image.filters[0].Apply();
    }

    // Update the image.
    this.image.src = slide.image.src;
    
    //AJR - set href on link.
    document.getElementById('AJRslideshowlink').href = slide.link
    
    // Play the image transition filters
    if (dofilter) {
      this.image.filters[0].Play();
    }

    // Update the text
    this.display_text();

    // Call the post-update hook function if one was specified
    if (typeof this.post_update_hook == 'function') {
      this.post_update_hook();
    }

    // Do we need to pre-fetch images?
    if (this.prefetch > 0) {

      var next, prev, count;

      // Pre-fetch the next slide image(s)
      next = this.current;
      prev = this.current;
      count = 0;
      do {

        // Get the next and previous slide number
        // Loop past the ends of the slideshow if necessary
        if (++next >= this.slides.length) next = 0;
        if (--prev < 0) prev = this.slides.length - 1;

        // Preload the slide image
        this.slides[next].load();
        this.slides[prev].load();

        // Keep going until we have fetched
        // the designated number of slides

      } while (++count < this.prefetch);
    }
  }

  //--------------------------------------------------
  this.goto_slide = function(n) {
    // This method jumpts to the slide number you specify.
    // If you use slide number -1, then it jumps to the last slide.
    // You can use this to make links that go to a specific slide,
    // or to go to the beginning or end of the slideshow.
    // Examples:
    // onClick="myslides.goto_slide(0)"
    // onClick="myslides.goto_slide(-1)"
    // onClick="myslides.goto_slide(5)"
  
    if (n == -1) {
      n = this.slides.length - 1;
    }
  
    if (n < this.slides.length && n >= 0) {
      this.current = n;
    }
  
    this.update();
  }


  //--------------------------------------------------
  this.goto_random_slide = function(include_current) {
    // Picks a random slide (other than the current slide) and
    // displays it.
    // If the include_current parameter is true,
    // then 
    // See also: shuffle()

    var i;

    // Make sure there is more than one slide
    if (this.slides.length > 1) {

      // Generate a random slide number,
      // but make sure it is not the current slide
      do {
        i = Math.floor(Math.random()*this.slides.length);
      } while (i == this.current);
 
      // Display the slide
      this.goto_slide(i);
    }
  }


  //--------------------------------------------------
  this.next = function() {
    // This method advances to the next slide.

    // Increment the image number
    if (this.current < this.slides.length - 1) {
      this.current++;
    } else if (this.repeat) {
      this.current = 0;
    }

    this.update();
  }


  //--------------------------------------------------
  this.previous = function() {
    // This method goes to the previous slide.
  
    // Decrement the image number
    if (this.current > 0) {
      this.current--;
    } else if (this.repeat) {
      this.current = this.slides.length - 1;
    }
  
    this.update();
  }


  //--------------------------------------------------
  this.shuffle = function() {
    // This method randomly shuffles the order of the slides.

    var i, i2, slides_copy, slides_randomized;

    // Create a copy of the array containing the slides
    // in sequential order
    slides_copy = new Array();
    for (i = 0; i < this.slides.length; i++) {
      slides_copy[i] = this.slides[i];
    }

    // Create a new array to contain the slides in random order
    slides_randomized = new Array();

    // To populate the new array of slides in random order,
    // loop through the existing slides, picking a random
    // slide, removing it from the ordered list and adding it to
    // the random list.

    do {

      // Pick a random slide from those that remain
      i = Math.floor(Math.random()*slides_copy.length);

      // Add the slide to the end of the randomized array
      slides_randomized[ slides_randomized.length ] =
        slides_copy[i];

      // Remove the slide from the sequential array,
      // so it cannot be chosen again
      for (i2 = i + 1; i2 < slides_copy.length; i2++) {
        slides_copy[i2 - 1] = slides_copy[i2];
      }
      slides_copy.length--;

      // Keep going until we have removed all the slides

    } while (slides_copy.length);

    // Now set the slides to the randomized array
    this.slides = slides_randomized;
  }


  //--------------------------------------------------
  this.get_text = function() {
    // This method returns the text of the current slide
  
    return(this.slides[ this.current ].text);
  }


  //--------------------------------------------------
  this.get_all_text = function(before_slide, after_slide) {
    // Return the text for all of the slides.
    // For the text of each slide, add "before_slide" in front of the
    // text, and "after_slide" after the text.
    // For example:
    // document.write("<ul>");
    // document.write(s.get_all_text("<li>","\n"));
    // document.write("<\/ul>");
  
    all_text = "";
  
    // Loop through all the slides in the slideshow
    for (i=0; i < this.slides.length; i++) {
  
      slide = this.slides[i];
    
      if (slide.text) {
        all_text += before_slide + slide.text + after_slide;
      }
  
    }
  
    return(all_text);
  }


  //--------------------------------------------------
  this.display_text = function(text) {
    // Display the text for the current slide
  
    // If the "text" arg was not supplied (usually it isn't),
    // get the text from the slideshow
    if (!text) {
      text = this.slides[ this.current ].text;
    }
  
    // If a textarea has been specified,
    // then change the text displayed in it
    if (this.textarea && typeof this.textarea.value != 'undefined') {
      this.textarea.value = text;
    }

    // If a text id has been specified,
    // then change the contents of the HTML element
    if (this.textid) {

      r = this.getElementById(this.textid);
      if (!r) { return false; }
      if (typeof r.innerHTML == 'undefined') { return false; }

      // Update the text
      r.innerHTML = text;
    }
  }


  //--------------------------------------------------
  this.hotlink = function() {
    // This method calls the hotlink() method for the current slide.
  
    this.slides[ this.current ].hotlink();
  }


  //--------------------------------------------------
  this.save_position = function(cookiename) {
    // Saves the position of the slideshow in a cookie,
    // so when you return to this page, the position in the slideshow
    // won't be lost.
  
    if (!cookiename) {
      cookiename = this.name + '_slideshow';
    }
  
    document.cookie = cookiename + '=' + this.current;
  }


  //--------------------------------------------------
  this.restore_position = function(cookiename) {
  // If you previously called slideshow_save_position(),
  // returns the slideshow to the previous state.
  
    //Get cookie code by Shelley Powers
  
    if (!cookiename) {
      cookiename = this.name + '_slideshow';
    }
  
    var search = cookiename + "=";
  
    if (document.cookie.length > 0) {
      offset = document.cookie.indexOf(search);
      // if cookie exists
      if (offset != -1) { 
        offset += search.length;
        // set index of beginning of value
        end = document.cookie.indexOf(";", offset);
        // set index of end of cookie value
        if (end == -1) end = document.cookie.length;
        this.current = parseInt(unescape(document.cookie.substring(offset, end)));
        }
     }
  }


  //--------------------------------------------------
  this.noscript = function() {
    // This method is not for use as part of your slideshow,
    // but you can call it to get a plain HTML version of the slideshow
    // images and text.
    // You should copy the HTML and put it within a NOSCRIPT element, to
    // give non-javascript browsers access to your slideshow information.
    // This also ensures that your slideshow text and images are indexed
    // by search engines.
  
    $html = "\n";
  
    // Loop through all the slides in the slideshow
    for (i=0; i < this.slides.length; i++) {
  
      slide = this.slides[i];
  
      $html += '<P>';
  
      if (slide.link) {
        $html += '<a href="' + slide.link + '">';
      }
  
      $html += '<img src="' + slide.src + '" ALT="slideshow image">';
  
      if (slide.link) {
        $html += "<\/a>";
      }
  
      if (slide.text) {
        $html += "<BR>\n" + slide.text;
      }
  
      $html += "<\/P>" + "\n\n";
    }
  
    // Make the HTML browser-safe
    $html = $html.replace(/\&/g, "&amp;" );
    $html = $html.replace(/</g, "&lt;" );
    $html = $html.replace(/>/g, "&gt;" );
  
    return('<pre>' + $html + '</pre>');
  }


  //==================================================
  // Private methods
  //==================================================

  //--------------------------------------------------
  this.loop = function() {
    // This method is for internal use only.
    // This method gets called automatically by a JavaScript timeout.
    // It advances to the next slide, then sets the next timeout.
    // If the next slide image has not completed loading yet,
    // then do not advance to the next slide yet.

    // Make sure the next slide image has finished loading
    if (this.current < this.slides.length - 1) {
      next_slide = this.slides[this.current + 1];
      if (next_slide.image.complete == null || next_slide.image.complete) {
        this.next();
      }
    } else { // we're at the last slide
      this.next();
    }
    
    // Keep playing the slideshow
    this.play( );
  }


  //--------------------------------------------------
  this.valid_image = function() {
    // Returns 1 if a valid image has been set for the slideshow
  
    if (!this.image)
    {
      return false;
    }
    else {
      return true;
    }
  }

  //--------------------------------------------------
  this.getElementById = function(element_id) {
    // This method returns the element corresponding to the id

    if (document.getElementById) {
      return document.getElementById(element_id);
    }
    else if (document.all) {
      return document.all[element_id];
    }
    else if (document.layers) {
      return document.layers[element_id];
    } else {
      return undefined;
    }
  }
  

  //==================================================
  // Deprecated methods
  // I don't recommend the use of the following methods,
  // but they are included for backward compatibility.
  // You can delete them if you don't need them.
  //==================================================

  //--------------------------------------------------
  this.set_image = function(imageobject) {
    // This method is deprecated; you should use
    // the following code instead:
    // s.image = document.images.myimagename;
    // s.update();

    if (!document.images)
      return;
    this.image = imageobject;
  }

  //--------------------------------------------------
  this.set_textarea = function(textareaobject) {
    // This method is deprecated; you should use
    // the following code instead:
    // s.textarea = document.form.textareaname;
    // s.update();

    this.textarea = textareaobject;
    this.display_text();
  }

  //--------------------------------------------------
  this.set_textid = function(textidstr) {
    // This method is deprecated; you should use
    // the following code instead:
    // s.textid = "mytextid";
    // s.update();

    this.textid = textidstr;
    this.display_text();
  }
}

function RadRotator(O,o,ScrollDirection){ this.ClientID=O; this.SmoothScrollDelay=10; this.Y=document.getElementById(O+"_Div"); this.I=document.getElementById(O+"_Fram\x65Contain\x65r"); if (o){ this.o=o; }else { this.o=1; } this.I.style.top="\x30px"; this.I.style.left="0px"; this.A=0; var U=this ; this.Z= function (e){U.z(e); } ; this.X= function (e){U.W(e); } ; this.w= function (e){U.V(e); } ; this.v= function (e){U.T(e); } ; this.t= function (){U.FixHeight(); } ; this.S(this.Y,"m\x6fusee\x6e\x74\x65r",this.Z); this.S(this.Y,"\x6douse\x6c\x65a\x76e",this.X); this.S(this.Y,"mous\x65over",this.w); this.S(this.Y,"\x6do\x75\x73eou\x74",this.v); if (window.OnCallbackRequestStart){var R=this ; var r=window.OnCallbackRequestStart; window.OnCallbackRequestStart= function (){R.Q(); r(); };}} ; RadRotator.prototype.attachEvent= function (P,N){var n=this.M(N); var m= function (L,l){return n(L,l); };this[P+"H\x61ndle\x72"]=m; } ; RadRotator.prototype.M= function (K){var m= function (L,l){} ; if (typeof(K).toString().toLowerCase()=="\x66\165\x6ecti\x6fn"){m=K; }else if (typeof(K).toString().toLowerCase()=="s\x74ring"){try {m=eval(K);}catch (k){}}return m; };RadRotator.prototype.FireOnClientFrameChanging= function (L){if (this.OnClientFrameChangingHandler!=null){var m=this.OnClientFrameChangingHandler; return m(this, {} ); }};RadRotator.prototype.FireOnClientFrameChanged= function (L){ this.J(); var U=this ; if (this.RotatorMode.toLowerCase()=="\x73cro\x6c\x6c"){window.clearTimeout(this.j); this.j=0; this.j=window.setTimeout( function (){U.H();} ,this.FrameTimeout); }if (this.RotatorMode.toLowerCase()=="s\x6c\x69desh\x6fw"){window.clearTimeout(this.h); this.h=0; this.h=window.setTimeout( function (){U.G();} ,this.FrameTimeout); }if (this.OnClientFrameChangedHandler!=null){var m=this.OnClientFrameChangedHandler; return m(this, {} ); }};RadRotator.prototype.g= function (max){return parseInt(((max*Math.random())%max)); } ; RadRotator.prototype.F= function (f){if (f){ this.D= true; }else { this.D= false; }} ; RadRotator.prototype.S= function (d,P,N){try {if (document.all){d.attachEvent("o\x6e"+P,N); }else {d.addEventListener(P,N, true); }}catch (k){}} ; RadRotator.prototype.z= function (e){if (!this.AutoAdvance){return; }if (this.PauseOnMouseOver){ this.F( true); }};RadRotator.prototype.W= function (){if (!this.AutoAdvance){return; }if (this.PauseOnMouseOver){ this.F( false); }} ; RadRotator.prototype.V= function (){if (!this.AutoAdvance){return; }if (document.all && !window.opera){return; }if (this.PauseOnMouseOver){ this.F( true); }} ; RadRotator.prototype.T= function (){if (!this.AutoAdvance){return; }if (document.all && !window.opera){return; }if (this.PauseOnMouseOver){ this.F( false); }} ; RadRotator.prototype.C= function (id){var c="_\x5fdoPo\x73\x74\x42ack(\047"+this.B+"\x27,\047"+id+"\x27)"; eval(c); return; } ; RadRotator.prototype.StartRotator= function (){ this.o0= false; if (this.O0==0){return; } this.O0=0; this.AutoAdvance=1; if (this.RotatorMode.toLowerCase()=="s\x63roll"){ this.H(); }else { this.G(); }} ; RadRotator.prototype.StopRotator= function (){if (this.RotatorMode.toLowerCase()=="s\x63roll"){ this.l0(); }else { this.i0(); }} ; RadRotator.prototype.i0= function (){ this.O0=1; this.AutoAdvance=0; } ; RadRotator.prototype.l0= function (){ this.O0=1; this.AutoAdvance=0; } ; RadRotator.prototype.Start= function (){ this.FixHeight(); this.J(); if (this.RotatorMode!=null && this.RotatorMode.toLowerCase()=="scr\x6fll"){ this.I0(); var U=this ; window.clearTimeout(this.j); this.j=window.setTimeout( function (){U.H();} ,this.FrameTimeout); }if (this.RotatorMode!=null && this.RotatorMode.toLowerCase()=="s\x6c\x69\x64esh\x6fw"){var U=this ; window.clearTimeout(this.h); this.h=window.setTimeout( function (){U.G();} ,this.FrameTimeout); }} ; RadRotator.prototype.J= function (){if (this.HasTickers){ this.o1(); var O1=this.FrameIdArray; var l1=i1(this.Y); for (var i=0; i<this.NumberOfFrames; i++){var I1=document.getElementById(O1[i]); var o2=i1(I1); if (l1.O2(o2)){eval(this[I1.id+"\137s"]); }}}} ; RadRotator.prototype.o1= function (){if (this.HasTickers){for (var i=0; i<this.NumberOfTickers; i++){eval(this.TickerIdArray[i]).ResetTicker(); }}} ; RadRotator.prototype.Freeze= function (){ this.o0= true; };RadRotator.prototype.FixHeight= function (){var width; var height; if (null!=document.readyState && "\143\x6fmple\x74e"!=document.readyState){ this.S(window,"\x6c\x6fad",this.t); }if (parseInt(this.Y.offsetWidth)>0){width=this.Y.offsetWidth; }else {width=this.Y.style.width; }if (parseInt(this.Y.offsetHeight)>0){height=this.Y.offsetHeight; }else {height=this.Y.style.height; }if (this.RotatorMode.toLowerCase()=="s\x63roll" && (this.ScrollDirection.toLowerCase()=="\x6ceft" || this.ScrollDirection.toLowerCase()=="\x72i\x67\x68t")){ this.l2=parseInt(width)/this.o; this.i2=parseInt(height); this.I.style.width=(this.l2*this.NumberOfFrames)+"\x70\x78"; }if (this.RotatorMode.toLowerCase()=="s\x63\x72\157\x6cl" && (this.ScrollDirection.toLowerCase()=="u\x70" || this.ScrollDirection.toLowerCase()=="\144\x6fwn")){ this.l2=parseInt(width); this.i2=parseInt(height)/this.o; this.I.style.height=(this.i2*this.NumberOfFrames)+"p\x78"; }if (this.RotatorMode.toLowerCase()=="\x73lidesh\x6f\x77"){ this.l2=parseInt(width); this.i2=parseInt(height); }var O1=this.FrameIdArray; for (var i=0; i<this.NumberOfFrames; i++){var I1=document.getElementById(O1[i]); I1.style.height=this.i2+"\x70\x78"; I1.style.width=this.l2+"px"; }} ; RadRotator.prototype.G= function (){if (this.NumberOfFrames/this.o<=1){return; }if (this.AutoAdvance){ this.ShowNextFrame(); }} ; RadRotator.prototype.I0= function (){if (this.ScrollDirection.toLowerCase()=="d\x6fw\x6e"){ this.I.style.top=(this.NumberOfFrames-this.o)*this.i2*(-1)+"p\x78"; }if (this.ScrollDirection.toLowerCase()=="righ\x74"){ this.I.style.left=(this.NumberOfFrames-this.o)*this.l2*(-1)+"p\x78"; } this.J(); };RadRotator.prototype.H= function (){if (this.NumberOfFrames/this.o<=1){return; }if (this.FireOnClientFrameChanging(this )== false){return; }if (this.AutoAdvance){ this.I2(); }} ; RadRotator.prototype.I2= function (){switch (this.ScrollDirection.toLowerCase()){case "up":{ this.ScrollUpNextFrame(); break; }case "do\x77n":{ this.ScrollDownNextFrame(); break; }case "left":{ this.ScrollLeftNextFrame(); break; }case "\x72ight":{ this.ScrollRightNextFrame(); break; }}} ; RadRotator.prototype.ShowPrevFrame= function (){if (this.RotatorMode.toLowerCase()!="\163\x6ci\x64\x65\x73how"){alert("D\x6f not c\x61\x6c\x6c this \x66unc\x74io\x6e when\x20rota\x74or\x20is\x20in s\x63rol\x6cing \x6dode\x21"); return; } this.A=(this.A-2)%this.NumberOfFrames; if (this.A<-1){ this.A=this.NumberOfFrames-2; } this.ShowNextFrame(); } ; RadRotator.prototype.ShowNextFrame= function (){if (this.RotatorMode.toLowerCase()!="\x73\x6cidesho\x77"){alert("Do \x6eot cal\x6c this f\x75nctio\x6e when\x20rotat\x6fr is \x69n \x73cro\x6cling\x20mode\x21"); return; }if (this.D){var U=this ; window.clearTimeout(this.h); this.h=0; this.h=window.setTimeout( function (){U.ShowNextFrame();} ,this.FrameTimeout); return; }if (this.FireOnClientFrameChanging(this )== false){return; }var o3; if (this.UseRandomSlide){ do {o3=this.g(this.NumberOfFrames)*this.i2*(-1); }while (o3==parseInt(this.I.style.top));}else { this.A=(this.A+1)%this.NumberOfFrames; o3=this.A*this.i2*(-1); }if (this.UseTransition && document.all && !window.opera){if (this.UseRandomEffect){ this.Y.style.filter=this.TransitionStrings[this.g(17)]; }else { this.Y.style.filter=this.TransitionString; } this.Y.filters[0].Apply(); this.I.style.top=o3+"p\x78"; this.Y.filters[0].Play(); }else { this.I.style.top=o3+"px"; } this.FireOnClientFrameChanged(); } ; RadRotator.prototype.ScrollLeftNextFrame= function (){if (this.RotatorMode.toLowerCase()!="s\x63rol\x6c"){alert("\x44o \x6e\x6ft \x63all t\x68is f\x75ncti\x6fn when\x20rota\x74or\x20is \x69n sl\x69des\x68ow m\x6fde!"); return; }if (this.ScrollDirection.toLowerCase()=="up" || this.ScrollDirection.toLowerCase()=="\x64ow\x6e"){alert("Do not ca\x6cl th\x69s funct\x69on wh\x65n rot\x61tor i\x73 in v\x65rti\x63al s\x63roll\x69ng \x6dode\x21"); return; }if (this.o0){return; }if (this.D){var U=this ; this.O3=0; this.O3=window.setTimeout( function (){U.ScrollLeftNextFrame();} ,this.ScrollSpeed);return; }if (parseInt(this.I.style.left)>this.l2*(-1)){ this.l3= true; if (!this.UseSmoothScroll){ this.I.style.left=(parseInt(this.I.style.left)-1)+"p\x78"; }else {var i3=(this.l2*(-1)-parseInt(this.I.style.left))/this.SmoothScrollDelay; this.I.style.left=(parseInt(this.I.style.left)+i3-1)+"px"; }var U=this ; this.O3=0; this.O3=window.setTimeout( function (){U.ScrollLeftNextFrame();} ,this.ScrollSpeed); }else {var I3=this.I.firstChild.firstChild.firstChild; this.I.firstChild.firstChild.removeChild(this.I.firstChild.firstChild.firstChild); this.I.firstChild.firstChild.appendChild(I3); this.I.style.left="0\x70\170"; this.A=(this.A+1)%this.NumberOfFrames; this.FireOnClientFrameChanged(); this.l3= false; }} ; RadRotator.prototype.ScrollRightNextFrame= function (){if (this.RotatorMode.toLowerCase()!="\x73\x63\x72oll"){alert("\x44\x6f\x20not\x20call t\x68is f\x75ncti\x6fn whe\x6e rota\x74or\x20is \x69n sl\x69des\x68ow m\x6fde!"); return; }if (this.ScrollDirection.toLowerCase()=="up" || this.ScrollDirection.toLowerCase()=="\x64own"){alert("\104o\x20not c\x61ll \x74his fu\x6ect\x69on wh\x65n rot\x61tor i\163\x20in\x20vert\x69cal \x73cro\x6clin\x67 mo\x64e!"); return; }if (this.o0){return; }if (this.D){var U=this ; this.O3=0; this.O3=window.setTimeout( function (){U.ScrollRightNextFrame();} ,this.ScrollSpeed);return; }if (parseInt(this.I.style.left)<this.l2*(this.NumberOfFrames-this.o-1)*(-1)){ this.l3= true; if (!this.UseSmoothScroll){ this.I.style.left=parseInt(this.I.style.left)+1+"\160x"; }else {var i3=(((this.NumberOfFrames-this.o)*this.l2*(-1)+this.l2)-parseInt(this.I.style.left))/this.SmoothScrollDelay; this.I.style.left=parseInt(this.I.style.left)+i3+"p\x78"; }var U=this ; this.O3=0; this.O3=window.setTimeout( function (){U.ScrollRightNextFrame();} ,this.ScrollSpeed); }else {var I3=this.I.firstChild.firstChild.lastChild; this.I.firstChild.firstChild.removeChild(this.I.firstChild.firstChild.lastChild); this.I.firstChild.firstChild.insertBefore(I3,this.I.firstChild.firstChild.firstChild); this.I.style.left=(this.NumberOfFrames-this.o)*this.l2*(-1)+"\160x"; this.A=(this.A+1)%this.NumberOfFrames; this.FireOnClientFrameChanged(); this.l3= false; }} ; RadRotator.prototype.ScrollDownNextFrame= function (){if (this.RotatorMode.toLowerCase()!="\163\x63r\x6f\x6cl"){alert("\x44\x6f not cal\x6c this \x66unc\x74ion w\x68en ro\x74ator \x69s\x20in \x73lide\x73how \x6dode\x21"); return; }if (this.ScrollDirection.toLowerCase()=="right" || this.ScrollDirection.toLowerCase()=="\x6ceft"){alert("D\x6f not ca\x6cl this\x20functi\x6fn whe\x6e rota\x74or is\x20in \x68oriz\x6fntal\x20scro\x6clin\x67 mo\x64e!"); return; }if (this.o0){return; }if (this.D){var U=this ; this.O3=0; this.O3=window.setTimeout( function (){U.ScrollDownNextFrame();} ,this.ScrollSpeed);return; }if (parseInt(this.I.style.top)<(this.NumberOfFrames-this.o)*this.i2*(-1)+this.i2){ this.l3= true; if (!this.UseSmoothScroll){ this.I.style.top=parseInt(this.I.style.top)+1+"\160x"; }else {var i3=(((this.NumberOfFrames-this.o)*this.i2*(-1)+this.i2)-parseInt(this.I.style.top))/this.SmoothScrollDelay; this.I.style.top=parseInt(this.I.style.top)+i3+"p\x78"; }var U=this ; this.O3=0; this.O3=window.setTimeout( function (){U.ScrollDownNextFrame();} ,this.ScrollSpeed); }else {var I3=this.I.lastChild; this.I.removeChild(this.I.lastChild); this.I.insertBefore(I3,this.I.firstChild); this.I.style.top=(this.NumberOfFrames-this.o)*this.i2*(-1)+"p\x78"; this.A=(this.A+1)%this.NumberOfFrames; this.FireOnClientFrameChanged(); this.l3= false; }} ; RadRotator.prototype.ScrollUpNextFrame= function (){if (this.RotatorMode.toLowerCase()!="\163croll"){alert("Do\x20no\x74\x20c\x61ll thi\x73 fu\x6ection\x20\167\x68en\x20rot\x61t\x6fr is\x20in s\x6cides\x68ow \x6dode\x21"); return; }if (this.ScrollDirection.toLowerCase()=="righ\x74" || this.ScrollDirection.toLowerCase()=="\x6ce\x66\x74"){alert("Do not c\x61ll th\x69s func\x74ion w\x68\145\x6e rot\x61tor i\x73 in\x20hori\x7aonta\x6c scr\x6flli\x6eg m\x6fde!"); return; }if (this.o0){return; }if (this.D){var U=this ; this.O3=0; this.O3=window.setTimeout( function (){U.ScrollUpNextFrame();} ,this.ScrollSpeed);return; }if (parseInt(this.I.style.top)>this.i2*(-1)){ this.l3= true; if (!this.UseSmoothScroll){ this.I.style.top=(parseInt(this.I.style.top)-1)+"px"; }else {var i3=(this.i2*(-1)-parseInt(this.I.style.top))/this.SmoothScrollDelay; this.I.style.top=(parseInt(this.I.style.top)+i3-1)+"p\x78"; }var U=this ; this.O3=0; this.O3=window.setTimeout( function (){U.ScrollUpNextFrame();} ,this.ScrollSpeed); }else {var I3=this.I.firstChild; this.I.removeChild(this.I.firstChild); this.I.appendChild(I3); this.I.style.top="0\x70\x78"; this.A=(this.A+1)%this.NumberOfFrames; this.FireOnClientFrameChanged(); this.l3= false; }} ; function o4(left,top,width,height){ this.left=(null!=left?left: 0); this.top=(null!=top?top: 0); this.width=(null!=width?width: 0); this.height=(null!=height?height: 0); this.right=left+width; this.bottom=top+height; } ; o4.prototype.O4= function (){return new o4(this.left,this.top,this.width,this.height); } ; o4.prototype.l4= function (x,y){return (this.left<=x && x<=(this.left+this.width) && this.top<=y && y<=(this.top+this.height)); } ; o4.prototype.O2= function (i4){if (null==i4){return false; }if (this ==i4){return true; }return (i4.left<this.right && i4.top<this.bottom && i4.right>this.left && i4.bottom>this.top); } ; o4.prototype.I4= function (i4){if (null==i4){return false; }if (this ==i4){return this.O4(); }if (!this.O2(i4)){return new o4(); }var left=Math.max(this.left,i4.left); var top=Math.max(this.top,i4.top); var right=Math.min(this.right,i4.right); var bottom=Math.min(this.bottom,i4.bottom); return new o4(left,right,right-left,bottom-top); } ; RadRotator.prototype.Q= function (){window.clearTimeout(this.j); window.clearTimeout(this.h); window.clearTimeout(this.O3); } ; function i1(d){if (!d){d=this ; }var left=0; var top=0; var width=d.offsetWidth; var height=d.offsetHeight; while (d.offsetParent){left+=d.offsetLeft; top+=d.offsetTop; d=d.offsetParent; }if (d.x){left=d.x; }if (d.y){top=d.y; }return new o4(left,top,width,height); } ;

