var playingVideos = new Array();
function playVid(videoURL, divID) {
	swfobject.embedSWF("../common/flv_player.swf", divID, "100%", "100%", "9.0.0", null, {video:videoURL, id:divID}, {menu:"false", wmode:"transparent"});
	stopOtherVids(divID);
	playingVideos.push(divID);
}
function stopOtherVids(exceptThisOne) {
	for(var i = 0; i < playingVideos.length; i++) {
		if(playingVideos[i] != exceptThisOne) {
			document.getElementById(playingVideos[i]).pauseVideo();
		}
	}
}
