//<!--

function EmbedFlash(src, height, width)
{
	document.write(' <object ');
	document.write(' classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"  ');
	document.write(' codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"  ');
	document.write(' width="' + width + '"  ');
	document.write(' height="' + height + '"  ');
	document.write(' id="flash"  ');
	document.write(' align="middle"> ');
	document.write(' <param name="allowScriptAccess" value="sameDomain" /> ');
	document.write(' <param name="movie" value="' + src + '" /> ');
	document.write(' <param name="quality" value="high" /> ');
	document.write(' <param name="wmode" value="transparent" /><param/> ');
	document.write(' <param name="bgcolor" value="#ffffff" /> ');
	document.write(' <embed  ');
	document.write(' src="' + src + '"  ');
	document.write(' quality="high"  ');
	document.write(' wmode="transparent" '); 
	document.write(' bgcolor="#ffffff"  ');
	document.write(' width="' + width + '"  ');
	document.write(' height="' + height + '"  ');
	document.write(' name="flash"  ');
	document.write(' align="middle"  ');
	document.write(' allowScriptAccess="sameDomain"  ');
	document.write(' type="application/x-shockwave-flash"  ');
	document.write(' pluginspage="http://www.macromedia.com/go/getflashplayer"  ');
	document.write(' /> ');
	document.write(' </object>  ');
}

window.onload = fix;

function fix()
{
	var f;

	f = document.getElementById('_ctl5_form_current');
	if(f)
	{
		var c = document.getElementById('content');
		c.style.height = '650px';
	}
	
	f = document.getElementById('_ctl6_form_current');
	if(f)
	{
		var c = document.getElementById('content');
		c.style.height = '500px';
	}
	
}

//-->
