﻿// JScript 文件
//document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width='+flashwidth+' height='+flashheight+'>');
//document.writeln(' <param name="movie" value='+flashurl+'>');
//document.writeln('<param name="quality" value="high">');
//document.writeln('<embed src="swf/navigation.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width='+flashwidth+' height='+flashheight+'></embed>');
//document.writeln('</object>');

function loadFlashOne() //加载第一个flash，首页导航flash
{
    document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="815" height="40">');
    document.writeln(' <param name="movie" value="swf/navigation.swf">');
    document.writeln('<param name="quality" value="high">');
    document.writeln('<embed src="swf/navigation.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="815" height="40"></embed>');
    document.writeln('</object>');
}

function loadFlashTwo() //加载第二个flash，首页主体flash
{
    document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="815" height="250">');
    document.writeln(' <param name="movie" value="swf/index.swf">');
    document.writeln('<param name="quality" value="high">');
    document.writeln('<embed src="swf/index.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="815" height="250"></embed>');
    document.writeln('</object>');
}

//加载flash通用方法
//参数 flashurl flash文件的地址 flashwidth flash文件的宽度 flashheight flash文件的高度
function loadFlash(flashurl,flashwidth,flashheight) 
{
    document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width='+flashwidth+'px height='+flashheight+'px>');
    document.writeln(' <param name="movie" value='+flashurl+'>');
    document.writeln('<param name="quality" value="high">');
    document.writeln('<param name="wmode" value="transparent">');//设置flash背景透明
    document.writeln('<embed src='+flashurl+' quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width='+flashwidth+'px height='+flashheight+'px wmode="transparent"></embed>');
    document.writeln('</object>');
}

