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?1537" title="Harry the Monkey"><img src="http://fotozon.com/fotos/sato15_155_1537_921270701409414_square.jpg" align="center" alt="Harry the Monkey" width="100" height="100"></a><br><!--w:468|h:640--><p><a href="http://fotozon.com/fotoview.cgi?1537">Harry the Monkey</a></p>';
show(code,'RPIC20090722135140');
