﻿function RunButton(banner, altname, width, height) {
    if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {
        document.write("<a href='upload/banner/" + banner + ".aspx'><img src='upload/banner/" + banner + ".gif' alt='" + altname + "' /></a>");
    }
    else {
        document.writeln("<object classid=clsid:clsid:D27CDB6E-AE6D-11cf-96B8-444553540000");
        document.writeln("codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0'");
        document.writeln("width='" + width + "' height='" + height + "' id='" + altname + "'>");
        document.writeln("<param name='movie' value='upload/banner/" + banner + ".swf'>");
        document.writeln("<param name='quality' value='high'>");
        document.writeln("<param name='bgcolor' value='#000000'>");
        document.writeln("<embed src='upload/banner/" + banner + ".swf' quality='high' bgcolor='#000000' width='" + width + "' height='" + height + "' name='" + altname + "' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'></embed>");
        document.writeln("</object>");
    }
}
