﻿function openFolio(relativePath)
{
    var filePath = relativePath + "folio/Default.aspx";
    window.open(filePath, "_blank", "menubar=0, resizable=1, width=750, height=650, scrollbars=0, status=0, location=0" );
}

function initSlideShow()
{
    var num = 85; // if you add more images, this number needs to be increased
    images = new Array();
    for (i=1; i < num + 1; i++)
    {
        images.push("folio_" + i + ".jpg");
    }
    
    for (i = 0; i < this.images.length; i++) {
        s = new slide();
        s.src = "../images/_folio/" + images[i];
        ss.add_slide(s);
    }
    
    if (document.images) {
      // Tell the slideshow which image object to use
      ss.image = document.images.ss_img;
      // Auto-play the slideshow
      //ss.play();
    }
    
}