function mediaPlayer(filepath, imagepath,autos){	
	var xplayer = new SWFObject('mediaplayer.swf','videoPlayer','720','480','7');
	xplayer.addParam("allowfullscreen","true");
	xplayer.addParam("quality","high");
	xplayer.addVariable('displayheight','480');
	xplayer.addVariable('file',filepath);
	xplayer.addVariable('image',imagepath);
	xplayer.addVariable("backcolor","0x00000");
	xplayer.addVariable("frontcolor","0xffffff");
	xplayer.addVariable("lightcolor","0x076EB3");
	xplayer.addVariable('autostart',autos);
	xplayer.addVariable('autoscroll',"false");
	xplayer.addVariable('bufferlength',"3");
	xplayer.addVariable('largecontrols',"false");
	xplayer.addVariable('showdownload',"false");
	xplayer.addVariable('showeq',"false");
	xplayer.addVariable('thumbsinplaylist',"true");
	xplayer.addVariable('overstretch',"true");
	xplayer.addVariable('shuffle',"false");
	xplayer.addVariable('repeat',"false");
	xplayer.addVariable("enablejs","true");
	xplayer.write('playerWrapper');
}
function mediaPlayer2(filepath, imagepath,autos){	
	var xplayer = new SWFObject('mediaplayer.swf','videoPlayer','320','240','7');
	xplayer.addParam("allowfullscreen","true");
	xplayer.addParam("quality","high");
	xplayer.addVariable('displayheight','240');
	xplayer.addVariable('file',filepath);
	xplayer.addVariable('image',imagepath);
	xplayer.addVariable("backcolor","0x00000");
	xplayer.addVariable("frontcolor","0xffffff");
	xplayer.addVariable("lightcolor","0x076EB3");
	xplayer.addVariable('autostart',autos);
	xplayer.addVariable('autoscroll',"false");
	xplayer.addVariable('bufferlength',"3");
	xplayer.addVariable('largecontrols',"false");
	xplayer.addVariable('showdownload',"false");
	xplayer.addVariable('showeq',"false");
	xplayer.addVariable('thumbsinplaylist',"true");
	xplayer.addVariable('overstretch',"true");
	xplayer.addVariable('shuffle',"false");
	xplayer.addVariable('repeat',"false");
	xplayer.addVariable("enablejs","true");
	xplayer.write('playerWrapper');
}