function sendToFlash(flashMovieID, value) {
	thisMovie(flashMovieID).sendToFlash(value);
}

function thisMovie(movieName) {
	if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName];
	} else {
		return document[movieName];
	}
}

function setCarouselHeight(newHeight) {
  document.getElementById('carouselContainer').style.height = newHeight+"px";
  //document.getElementById('carousel').style.height = newHeight+"px";
}
