var timer;

function animate(path, max, delay) {
    timer=setTimeout("nextImage('"+path+"',2,"+max+","+delay+")",delay);
}

function nextImage(path,idx,max,delay) {
    if (idx > max) {
        idx=1;
    }
    document.getElementById('slideshow').src=path+'/'+idx+'.jpg';
    idx++;
    timer=setTimeout("nextImage('"+path+"',"+idx+","+max+","+delay+")",delay);
}

function externalLinks() {
  var anchors = document.getElementsByTagName("a");
  for (var i=0; i<anchors.length; i++) {
    var anchor = anchors[i];
    if (anchor.getAttribute("href") &&
      anchor.getAttribute("rel") == "external")
      anchor.target = "popup";
    }
}

function ctvertPopup() {
  window.open("","popup","width=800,height=600,left=0,top=0,scrollbars=1");
}

function promoPopup() {
  window.open("","popup","width=800,height=240,left=0,top=0,scrollbars=1");
}

function planPopup() {
  window.open("","popup","width=700,height=340,left=0,top=0,scrollbars=1");
}

function planCampingPopup() {
  window.open("","popup","width=560,height=770,left=0,top=0,scrollbars=1");
}

function OpenNavigatorWindow(url,width,height) {
    window.open (url,"_blank","toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+width+",height="+height)
}

function OpenPromoWindow(url) {
    window.open (url,"_blank","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=265")
}