<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.3790.2491" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT size=2>This goes in the cartoclient.tpl so you did it 
right.</FONT></DIV>
<DIV><FONT size=2></FONT>&nbsp;</DIV>
<DIV><FONT size=2>now, when you do a query, it should fill the &lt;div&gt; with 
a table of results. It will not be displayed on your screen but you can see it 
if you look at the source of the page (View-&gt;Page Source in your 
browser)</FONT></DIV>
<DIV><FONT size=2></FONT>&nbsp;</DIV>
<DIV><FONT size=2>So, do you see the table result in the source? You can try to 
temporarily remove the </FONT><FONT size=3>style="display:none;" so you can the 
result on your page</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT size=2>If you have a table of result, it should now activate the 
javascript when the page load. If you look at the page source, you should find 
</FONT><FONT size=3>"var result = 1;"</FONT></DIV>
<DIV>If you see "var result = 0" then there was no result to your query and the 
&lt;div&gt; should be empty too.</DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT size=2>If </FONT><FONT size=3>"var result = 1;", do you have any 
javascript errors reported in your browser? If yes, what is the error 
message.</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT size=2>Oliver</FONT></DIV>
<BLOCKQUOTE 
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV><FONT size=2></FONT><BR></DIV>I put that part into the head of the 
  cartoclient template:<BR><BR>&nbsp;&lt;script language="JavaScript" 
  type="text/javascript"&gt;<BR>&nbsp;&nbsp;&nbsp; &lt;!--<BR>&nbsp; var result 
  = "{if $tables_result|default:'0'}'1'{/if}"; <BR>&nbsp; 
  {literal}<BR>&nbsp;&nbsp;&nbsp; window.onload += function() 
  {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (result == "1") 
  {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; myContent =&nbsp; 
  document.getElementById("result").innerhtml;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  window.open('', 
  'popuppage',<BR>'toolbar=no,location=no,status=no,menubar=no,resizable=yes,scrollbars=yes,co 
  <BR>pyhistory=no,width=300,height=400');<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  popuppage.document.write('&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD 
  HTML<BR>4.01//EN""<A 
  href="http://www.w3.org/TR/html4/strict.dtd">http://www.w3.org/TR/html4/strict.dtd 
  </A>"&gt;'+<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  '&lt;html&gt;&lt;head&gt;&lt;title&gt;My 
  window&lt;/title&gt;&lt;/head&gt;&lt;body&gt;' + myContent<BR>+ 
  '&lt;/body&gt;&lt;/html&gt;')&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  }<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; 
  {/literal}<BR>&nbsp;&nbsp;&nbsp; //--&gt;<BR>&nbsp; &lt;/script&gt;<BR><BR>and 
  i put these part in the body of the file<BR><BR>&lt;div id="result" 
  style="display:none;"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  {$tables_result}<BR>&nbsp;&lt;/div&gt;<BR><BR>In fact I don't really know 
  where I should put theses files except the first that has to be in the head of 
  an html file. <BR><BR></BLOCKQUOTE></BODY></HTML>