<!--  
var placetogo = "";

var movieName = "anim_inside";

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 playmovie() {
  thisMovie(movieName).Play();
}

function gotolocation() {
	window.location = placetogo;
}

function gohere(url) {
	placetogo = url
	setTimeout("gotolocation()",500);
	playmovie();
}

//-->
