  <!--Hide
	function Substitute(src, target, ins) {	
		var idx = src.indexOf(target);
		var old = 0;
		var ret = '';
		while (idx >= 0) {
			ret += src.substring(old, idx) + ins;
			old = idx + target.length;
			idx = src.indexOf(target, old);
		}
		ret += src.substring(old, src.length);
		return ret;
	}
  
    loc = self.location.href;
    if(loc.indexOf("familieadvokaten.dk") > -1) {
        ;
    } else if (top.location == self.location) {
        site = "http://themis.dk/"
		val = location.href;
		val = val.toLowerCase();
		val = Substitute(val, "www", "");
		filnavn = val.substring(site.length, val.length);
        
		if (filnavn.substring(0,1) != "/")
			filnavn = "/" + filnavn;
		if(location.href.toLowerCase().indexOf("www") > -1)	
   		    top.location.href = "http://www.themis.dk/synopsis/index.asp?hovedramme="+filnavn;
   		else 
   		    top.location.href = "http://themis.dk/synopsis/index.asp?hovedramme="+filnavn;
  }
  // End hide -->
