function get_obj(obj_id){
	var selected = document.getElementById(obj_id);
	return selected;
}
    
window.onload = index_do;

function index_do(){
    flowplayer("player", "SWF/flowplayer-3.1.5.swf",{
    clip: {
        autoPlay: false,
        onStart: function(clip){stop_music();}
    }});
}

function stop_music(){
    document.embeds['music'].Stop();
}