//new flashvars order=>flashvars , params , attributes
//audio player
swfobject.embedSWF("http://www.chriseaton.co.uk/mediaplayer.swf", "flashcontent", "150", "115", "7", "http://ww2.chriseaton.co.uk/expressInstall.swf",{file:"http://www.chriseaton.co.uk/playlist.xml.php",config:"http://www.chriseaton.co.uk/player.conf.php"}, {}, {id:"flashcontent",name:"flashcontent"});		
//video/showreel player
swfobject.embedSWF("http://www.chriseaton.co.uk/mediaplayer-4.swf", "mediacontent", "550", "600", "9.0.98", "http://ww2.chriseaton.co.uk/expressInstall.swf",{file:"http://www.chriseaton.co.uk/vplaylist.xml.php",config:"http://www.chriseaton.co.uk/video.conf.php"}, {}, {id:"mediacontent",name:"mediacontent"});
//image rotator needs testing
//swfobject.embedSWF("http://www.chriseaton.co.uk/imagerotator.swf", "imgPlay", "250", "250", "7", "http://ww2.chriseaton.co.uk/expressInstall.swf",{file:"http://www.chriseaton.co.uk/imgrotate.xml.php?",config:"http://www.chriseaton.co.uk/imgrotate.conf.php"}, {}, {id:"imgPlay",name:"imgPlay"});





function sendEvent(swf,typ,prm) { 
  thisMovie(swf).sendEvent(typ,prm); 
};
function getUpdate(typ,pr1,pr2,swf) {
	if(typ == "item") { currentItem = pr1; setTimeout("getItemData(currentItem)",100);}
	if(typ == "state") { 
		//alert('the current state is: '+pr1); 
		playerState=pr1;
	}
};
function getItemData(idx) {
	var obj = thisMovie("flashcontent").itemData(idx);
	document.getElementById("annotation").innerHTML = obj["description"];
	return obj;
};


function thisMovie(swf) {
  if(navigator.appName.indexOf("Microsoft") != -1) {
    return window[swf];
  } else {
    return document[swf];
  }
};

function loadFile(swf,obj) { 
  thisMovie(swf).loadFile(obj); 
};	

function itemData(swf,idx) { 
  var obj = thisMovie(swf).itemData(idx); 
};

function getLength(swf) { 
  var len = thisMovie(swf).getLength();
};



//new
function playNew(){
	details=getItemData(0)["file"];
	alert(details);
}

function doPlay(id){
		details=getItemData(0)["file"];	
			//document.getElementById("anWrap").style.height="20px";
			if(playerState!=0){sendEvent('flashcontent','stop');}
			loadFile('flashcontent',{file:'http://www.chriseaton.co.uk/playlist.xml.php?play='+id+''});
			setTimeout("sendEvent('flashcontent','playitem',0);",350);
}
//new end



		