﻿function MostrarFlash(Nombre, Ancho, Alto) {
    var strFlash = "";
    if(document.all){
        // Internet Explorer
        strFlash += "<object type='application/x-shockwave-flash' width='" + Ancho + "' height='" + Alto + "' id='" + Nombre + "'>";    }else{        // FireFox        strFlash += "<object data='/Flash/" + Nombre + ".swf' type='application/x-shockwave-flash' width='" + Ancho + "' height='" + Alto + "' id='" + Nombre + "'>";    }    strFlash += "    <param name='movie' value='/Flash/" + Nombre + ".swf' />";    strFlash += "    <param name='quality' value='high' />";    strFlash += "    <param name='wmode' value='transparent' />";    strFlash += "    <param name='bgcolor' value='#000000' />";    strFlash += "    <embed src='/Flash/" + Nombre + ".swf' quality='high' wmode='transparent' bgcolor='#000000' width='" + Ancho + "' height='" + Alto + "' name='" + Nombre + "' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />";    strFlash += "</object>";    document.write(strFlash);
}