htmlからswfへパラメータを受け渡す。
<html>
<body>
<script type="text/javascript">
<!--var str = location.href;
str.match(/\?(.+)/);
var values = RegExp.$1;
document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' width='100%' height='100%'>");
document.write("<param name='flashVars' value='" + values + "'>");
document.write("<param name='src' value='S_Menu.swf'>");
document.write("<embed pluginspage='http://www.macromedia.com/go/getflashplayer' width='100%' height='100%' flashVars='" + values + "' src='S_Menu.swf'/>");
document.write("</object>");</script>
<body>
<html>