function quicktime(src,width) {
	document.write('<embed src="' + src + '" width="' + width + '" height="258" autostart="true" controls="console" />');
}
function quicktimer(src,width,name) {
	document.write('<embed src="' + src + '" width="' + width + '" height="258" autostart="true" controls="console" name="' + name + '" enablejavascript="true" />');
}

function player(src,width,height,location){
	var s1 = new SWFObject("/flvplayer.swf","single",width,height,"7");
	s1.addParam("allowfullscreen","true");
	s1.addVariable("file",src);
	s1.addVariable("height",height)
	s1.addVariable("width",width)
	s1.addVariable("backcolor","0x102143");
	s1.addVariable("frontcolor","0xFFFFFF");
	s1.addVariable("lightcolor","0xCFD2D9");
	s1.addVariable("autostart","true");
	s1.write(location);
}
