i pass this to a div innerhtml from javascript.
when i do it like this it doesn't work. it should display an image hyperlink
var newtext4=("<a href=" + number + "><img src=" + newtext2 + " /></a>");
if i do just text, it displays a hyperlink.
var newtext4=("<a href=" + number + ">" + newtext2 + "</a>");
any idea why?