Lines Matching refs:img
241 var img = document.createElement('img');
242 img.setAttribute('id', 'pfc_tabimg'+tabid);
244 img.setAttribute('src', pfc.res.getFileUrl('images/ch.gif'));
246 img.setAttribute('src', pfc.res.getFileUrl('images/pv.gif'));
247 a1.appendChild(img);
270 var img = document.createElement('img');
271 img.setAttribute('src', pfc.res.getFileUrl('images/tab_remove.gif'));
272 a2.appendChild(img);
345 var img = $('pfc_tabimg'+tabid);
346 if (img)
349 img.src = pfc.res.getFileUrl('images/ch-active.gif');
351 img.src = pfc.res.getFileUrl('images/pv-active.gif');
382 var img = $('pfc_tabimg'+tabid);
383 if (img)
386 img.src = pfc.res.getFileUrl('images/ch.gif');
388 img.src = pfc.res.getFileUrl('images/pv.gif');
416 var img = document.createElement('img');
417 img.setAttribute('src', s_url);
418 img.setAttribute('alt', s_symbol);
419 img.setAttribute('title', s_symbol);
420 img.s_symbol = s_symbol;
421 img.onclick = function(){ pfc.insertSmiley(this.s_symbol); }
422 container.appendChild(img);