/* 
The BeNoCMS JavaScript systemfunctions
systemfunctions.js
*/

function give_life_site_url()
{
var str=document.URL;
if (str.match("192\.168\.1\.55"))
   {
      LiveSiteUrl = 'http://192.168.1.55/tangocentro.nl/';
   } 
   else 
   {
      LiveSiteUrl = 'http://' + document.domain + '/';
   } 
return LiveSiteUrl;
}

