Hi I'm creating a popup to display a loading message, inside this popup i placed an animated gif...
the problem is that the gif is not being animated (it is an animated gif...) , its is being shown but without the animation...
This is the code:
oPopupLoading = window.createPopup();
var oPopupBody = oPopupLoading.document.body;
oPopupBody.style.cssText = "margin:0px;border:1px outset;background:#97baea;FONT-FAMILY: verdena, Arial, sans-serif;overflow:hidden"
var hStr = "";
hStr += '<table width=100% height=50 style="background:"><tr><td align=center><img src="../../myfolder/load.gif" width=16 height=16></td>'
hStr += '<td valign=middle align=center style="FONT-WEIGHT: bold; FONT-SIZE: 10pt; COLOR: #010d36"><span id=spMesangerCaption>' + str + '</span></td>';
hStr += '</tr></table>';
oPopupBody.innerHTML = hStr;
oPopupLoading.show(document.body.clientWidth/2-125,document.body.clientHeight/2-25,250,50,document.body);
Any ideas what am I doing wrong?
Thanks ahead!