// This script replaces the content in the div above, with the id given by myaudioid,  by the WMP object
// We need to provide values for: 
//          myplayerid,myfile,width,height,showcontrols,showdisplay,showstatusbar,autoplay,autostart 
// The full player has width=301 and height=145 plsy any hight needed for a video if applicable

	var myaudioid = "bgmusic";
	var myfile = "audio/china.wma";
	var width = 45;
	var height = 45;
	var showcontrols=1;
	var showdisplay=0;
	var showstatusbar=0;
	var autoplay=1;
	var autostart=1; // should be set to the same value as autoplay - 1=yes, 0=no

	myWMPlayer(myaudioid,myfile,width,height,showcontrols,showdisplay,showstatusbar,autoplay,autostart); 
