function getObject(s){
 var o=document.getElementById?document.getElementById(s):document.all(s);
 if(!o && document) o=document[s];
 if(!o && window) o=window[s];
 return o;
}
function getMovie(movieName){
 var r,d=window.document;
 if(d.embeds) if(d.embeds[movieName]) if(typeof d.embeds[movieName].IsPlaying!="undefined") return d.embeds[movieName];
 if(d[movieName]) if(typeof d[movieName].IsPlaying!="undefined") return d[movieName];
 return d.getElementById?d.getElementById(movieName):d.all(movieName);
}