function writeFlash(strId,strSource,intWidth,intHeight,strColor,strFlashvars)
{
  document.write('<object  classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" type="application/x-shockwave-flash" data="'+strSource+'" width="'+intWidth+'" height="'+intHeight+'" id="'+strId+'" align="middle">');
  document.write('  <param name="width"              value="'+intWidth+'" />');
  document.write('  <param name="height"             value="'+intHeight+'" />');
  document.write('  <param name="allowScriptAccess"  value="sameDomain" />');
  document.write('  <param name="movie"              value="'+strSource+'" />');
  document.write('  <param name="quality"            value="best" />');
  document.write('  <param name="bgcolor"            value="'+strColor+'" />');
  document.write('  <param name="wmode"              value="opaque" />');
  document.write('  <param name="flashvars"          value="'+strFlashvars+'" />');
  document.write('</object>');
}

function jumpToDetail()
{
  window.location.hash = "detail"; 
}