Javascript help :(?

Hey all,

here is a clipping of some javascript…(the qtObject script)

QTObject = function(mov, id, w, h) {
    this.mov = mov;
    this.id = id;
    this.width = w;
    this.height = h;
    this.redirect = "";
    this.sq = document.location.search.split("?")[1] || "";
    this.altTxt = "This content requires the QuickTime Plugin. <a href='http://www.apple.com/quicktime/download/'>Download QuickTime Player</a>.";
    this.bypassTxt = "<p>Already have QuickTime Player? <a href='?detectqt=false&"+ this.sq +"'>Click here.</a></p>";
    this.params = new Object();
    this.doDetect = getQueryParamValue('detectqt');
}

Where the altTxt is Instead of providing a link to download quicktime i wish to display an image instead…is this possible i tried attaching the the standard<img src=“whatever.jpg” width=“616” height=“133” /> tags and it did not work :frowning:

Is there a way to do this with this script??

Thanks in advance :slight_smile: