function getObj(id){return document.getElementById(id);}
function toggleImage(obj,image){obj.src=image;}
function toggleId(id,status){getObj(id).style.display=status;}
function writeFlash(url,width,height){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0" id="flash-object" width="'+width+'" height="'+height+'">');
	document.write('  <param name="movie" value="'+url+'">');
	document.write('  <param name="quality" value="high">');
	document.write('  <param name="menu" value="false">');
	document.write('  <param name="wmode" value="transparent">');
	document.write('  <embed name="intro" src="'+url+'" quality="high" bgcolor="#FFFFFF" width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>');
	document.write('</object>');
	return true;
}
function writeVideo(url,width,height){
	document.write('<object classid="CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" width="'+width+'" height="'+height+'">');
	document.write('  <param name="url" value="'+url+'">');
	document.write('  <param name="AutoStart" value="false">');
	document.write('  <param name="ShowControls" value="1">');
	document.write('  <param name="uiMode" value="mini">');
	document.write('  <embed name="intro" src="'+url+'" width="'+width+'" height="'+height+'" type="application/x-oleobject"></embed>');
	document.write('</object>');
	return true;
}
function writeDivx(url,width,height){
	document.write('<object codebase="http://go.divx.com/player/DivXBrowserPlugin.cab" width="'+width+'" height="'+height+'" classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616">');
	document.write('  <param name="autoplay" value="false" />');
	document.write('  <param name="src" value="'+url+'" />');
	document.write('  <param name="custommode" value="Stage6" />');
	document.write('  <param name="showpostplaybackad" value="true" />');
	document.write('  <embed type="video/divx" src="'+url+'" pluginspage="http://go.divx.com/plugin/download/" showpostplaybackad="true" custommode="Stage6" autoplay="false" width="'+width+'" height="'+height+'" />');
	document.write('</object>');
	return true;
}