blob: 8bf744458582d1a8e3604c962f1531ae4a5823b0 [file] [log] [blame]
function setImage(id,src) {
var e = document.getElementById(id)
if (e == null || e.tagName != "IMG") return
e.src = src
}
function P(id,op) {
var player = window[id] || window.document[id]
if (!player) {
alert("Player " + id + " not found")
return
}
if (op == "play") {
player.Play()
} else if (op == "stop") {
player.Stop()
} else if (op == "rew") {
player.Rewind()
}
}