<!--
function musicSwf_DOFSCommand(command,args){
	if (command=="Play"){
		Qplay();
	}
	if (command=="Stop"){
		Qstop();
	}
	if (command=="Pause"){
		Qpause();
	}
	if (command=="next"){
		Qnext();
	}
	if (command=="previous"){
		Qprevious();
	}
	if (command=="gotoMusic") {
		showmusiclist();
	}
}
function musicSwf_DoFSCommand(command,args){
	if (command=="Play"){
		Qplay();
	}
	if (command=="Stop"){
		Qstop();
	}
	if (command=="Pause"){
		Qpause();
	}
	if (command=="next"){
		Qnext();
	}
	if (command=="previous"){
		Qprevious();
	}
	if (command=="gotoMusic") {
		showmusiclist();
	}
}
//播放
function Qplay(){
	parent.zhuwawaplayer.wmpPP();
}
//停止
function Qstop(){
	parent.zhuwawaplayer.wmpStop();
}   
//暂停
function Qpause(){
        parent.zhuwawaplayer.wmpPP();
}
//下一首
function Qnext(){
        parent.zhuwawaplayer.playNext();
}
//上一首
function Qprevious(){
        parent.zhuwawaplayer.playPrev();
}
function showmusiclist(){
	parent.zhuwawaplayer.openPlist();
}
//-->