function popupDetail(gallery,index) {
    var detailWindow = window.open('scroller-service.php?gallery='+gallery+'&detail&index='+index,'detail','width=336,height=440');
    detailWindow.focus();
}

var movieName = "scroller";
function thisMovie(movieName) {
    // IE and Netscape refer to the movie object differently.
    // This function returns the appropriate syntax depending on the browser.
    if (navigator.appName.indexOf ("Microsoft") !=-1) {
	return window[movieName];
    } else {
	return document[movieName];
    }
}

function setGallery(gallery) {
    var movie = thisMovie('scroller');
    movie.SetVariable("/:gallery", gallery);
}
