function share_price(euro_value,local_value,change,date)
{
   document.write('<table width=640><tr width=100%>');
   document.write('<td class=shareprice align=center><b>Current share price: &nbsp;&euro;' + euro_value);
   if (local_value.length > 0) 
   {
      document.write('&nbsp;&nbsp;&nbsp;' + local_value);
   }
   document.write('</b>&nbsp;&nbsp;' + change + '&nbsp;&nbsp;Last update: ' + date + '</td>');
   document.write('</tr></table>');
}
