// JavaScript Document
// some variables to save

function thisMovie(movieName) {
	if(navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName];
	} else {
		return document[movieName];
	}
};

function load_flv(player,obj){
	obj.each(function(s){
		thisMovie(player).addItem(s);
	})
}
