function flash_reader(page,width,height,quality,wmode,bgcolor) {
document.write('<object type="application/x-shockwave-flash" data="'+page+'" width="'+width+'" height="'+height+'" id="">');
document.write('<param name="menu" value="false">');
document.write('<param name="movie" value="'+page+'">');
document.write('<param name="quality" value="'+quality+'">');
document.write('<param name="wmode" value="'+wmode+'">');
document.write('<param name="bgcolor" value="'+bgcolor+'">');
document.write('<embed src="'+page+'" menu="false" quality="'+quality+'" wmode="'+wmode+'" width="'+width+'" height="'+height+'" bgcolor="'+bgcolor+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">');
document.write('</object>');
}
function flash_reader_vars(page,width,height,quality,wmode,bgcolor,var01) {
document.write('<object type="application/x-shockwave-flash" data="'+page+'" width="'+width+'" height="'+height+'" id="">');
document.write('<param name="menu" value="false">');
document.write('<param name="movie" value="'+page+'">');
document.write('<param name="quality" value="'+quality+'">');
document.write('<param name="wmode" value="'+wmode+'">');
document.write('<param name="bgcolor" value="'+bgcolor+'">');
document.write('<param name="FlashVars" value="var01='+var01+'">');
document.write('<embed FlashVars="var01='+var01+'" src="'+page+'" menu="false" quality="'+quality+'" wmode="'+wmode+'" width="'+width+'" height="'+height+'" bgcolor="'+bgcolor+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">');
document.write('</object>');
}