/* 
 * Statistik på varifrån sidorna accessas osv
 */
function statistik() {
   var text='';

   // Loggning till accesslog tabellen.
   if (location.hostname == '' || document.referrer.indexOf(location.hostname) == -1) {
      text = 'Externt';	   	
   }
   else {
      text = 'Internt';
   }

   var host = '';
   if (location.hostname == 'localhost' || location.hostname == '') {
      host = 'localhost:8080';
   }
   else {
      host = 'www.skickablommor.net';	
   } 

   var x='<script type="text/javascript" src="http://' + host + '/accesslogservlet?url=';
   x = x + document.URL + '&referrer=' + document.referrer + '&text=' + text + '"';
   x = x + "<" + "/script>";

   document.writeln(x);
}
