﻿
// JScript File
function loadFlash(flieName, fileWidth, fileHeight)
{
    document.write("<object id='banner' codeBase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='" + fileWidth + "' height='" + fileHeight + "' align='middle' classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' VIEWASTEXT>");
    document.write("<PARAM NAME='Play' VALUE='-1'>");
    document.write("<PARAM NAME='Loop' VALUE='-1'>");
    document.write("<PARAM NAME='Quality' VALUE='High'>");
    document.write("<PARAM NAME='Movie' VALUE='../Bo/bannerImg/" + flieName + "'>");
    document.write("<embed src='~/Bo/bannerImg/" + flieName + "' wmode='Transparent' quality='high' bgcolor='#ffffff' width='" + fileWidth + "' height='" + fileHeight + "' name='banner' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
    document.write("</object>");   
}