function ActiveX(CLSID, VERSION, WIDTH, HEIGHT, SRC, WMODE)
{
	document.write('<object classid="'+ CLSID +'" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+ VERSION +'" width="'+ WIDTH +'" height="'+ HEIGHT +'">')
	document.write('<param name="movie" value="'+ SRC +'">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="menu" value="false">');
	document.write('<param name="wmode" value="'+ WMODE +'">');
	
	document.write('<embed src="'+ SRC +'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+ WIDTH +'" height="'+ HEIGHT +'" menu="false", wmode="'+ WMODE +'"></embed>');
	document.write('</object>');
}

function flv(WIDTH, HEIGHT, FILM)
{
	document.write('<embed src="mediaplayer.swf" width="'+ WIDTH +'" height="'+ HEIGHT +'" ');
	document.write('allowscriptaccess="always" allowfullscreen="true" ');
	document.write('flashvars="height='+ HEIGHT +'&width='+ WIDTH +'&file='+ FILM +'.flv&backcolor=0xFFFFFF&frontcolor=0x666666&searchbar=false&autostart=true" />');	
}

function showHide(id) {
	var obj = document.getElementById(id);
	if(obj.style.display == "") {
		obj.style.display = "block";
	} else {
		obj.style.display = "";
	}
}