function printFlashObject(flash_src,name,width,height,option_param_tag)
{
  obj_html = "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+width+"' height='"+height+"' id='"+name+"' align='middle'>";

  obj_html = obj_html + "<param name='allowScriptAccess' value='always' />";
  obj_html = obj_html + "<param name='movie' value='"+flash_src+"' />";
  obj_html = obj_html + "<param name='quality' value='high' />";
  obj_html = obj_html + "<param name='bgcolor' value='#ffffff' />";
  obj_html = obj_html + "<param name='wmode' value='transparent'>";
  obj_html = obj_html + "<param name='menu' value='false'>";

  obj_html = obj_html + option_param_tag;

  obj_html = obj_html + "<embed src='"+flash_src+"' wmode='transparent' quality='high' bgcolor='#ffffff' width='"+width+"' height='"+height+"' name='"+name+"' align='middle' allowscriptaccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />";
  obj_html = obj_html + "</object>";

  document.write(obj_html);
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


function toggleFAQ(faq) {
	var e = document.getElementById(faq);
	if (e.style.display == '') 
		e.style.display = "none";
	if (e.style.display == "none")
		e.style.display = "block";
	else
		e.style.display = "none";
	return false;
}


