﻿var count = 2;
            
function VisibleContent(){
    document.getElementById("nonFlashContent").className = "showContent";
}

function nonFlashImages(BannerType, LocationStops){
    if(count >= LocationStops){
        count = 1;
    }
    document.getElementById("nonFlashImg").src = "/media/images/nonflash/" + BannerType + "-" + count + ".jpg";
    count = count + 1;
}