function show(ht,id) {
 if (document.getElementById) {
  document.getElementById(id).innerHTML = ht;
 } else if (document.all) {
  document.all[id].innerHTML = ht;
 } else if (document.layers) {
  document.layers[id].document.open();
  document.layers[id].document.write(ht);
  document.layers[id].document.close();
 }
}

code='<a href="http://fotozon.com/fotoview.cgi?2852" title="drink"><img src="http://fotozon.com/fotos/trulybaka_246_2852_25592560487897_small2.jpg" align="center" alt="drink" width="150" height="200"></a><br><!--w:450|h:600-->';
show(code,'RPIC20090416162055');
