﻿// JScript File

function clickTour(nextId){
    document.getElementById("ctl00_ContentPlaceHolder1_lnkNext").style.visibility = "hidden";
    timedMsg(nextId);
}
function timedMsg(nextId)
{
    var t=setTimeout("javascript:window.location.href='TourClinicContent.aspx?SlideShow=Y&Tour=" + nextId + "'",5000);
    //var t=setTimeout("alert('5 seconds!')",5000);
}