function put_map(url, title)
{
   var w = window.open("",       
                       "",
                       "resizable,width=680,height=620,copyhistory=no,directories=no,menubar=no,location=no");
   var d = w.document;  
   d.write('<html><head><meta http-equiv="Content-Type" content="text/html"><link rel="stylesheet" href="../../style.css" type="text/css"></head><body link=#2C4758 bgColor=#FFFFFF text=#000000><center>');
   d.write('<nobr><img src='+url+'.gif></nobr><p class="main-test">');
   d.write(title + '<br><br>');
   d.write('<a href='+url+'.zip><img src="images/download.gif" border="0" alt="To download the data click here"></a><br><br>');
   d.write('<a href=javascript:window.close();><img src="images/close.gif" border="0"></a></p>');
   d.write('</center></body></html>');
   d.close();
}

function put_chart(url, title)
{
   var w = window.open("",       
                       "",
                       "resizable=no,width=545,height=425,copyhistory=no,directories=no,menubar=no,location=no");
   var d = w.document;  
   d.write('<html><head><meta http-equiv="Content-Type" content="text/html"><link rel="stylesheet" href="../../style.css" type="text/css"><title>');
   d.write(title);
   d.write('</title></head><body link=#2C4758 bgColor=#FFFFFF text=#000000><center>');
   d.write('<img src='+url+'.gif><p class="main-test">');
   d.write(title + '<br><br>');
   d.write('<a href=javascript:window.close();><img src="images/close.gif" border="0"></a></p>');
   d.write('</center></body></html>');
   d.close();
}
