<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <meta name="description" content="Never ending story - ett annorlunda livsarkiv, i samarbete med Fluffbabes">
 <meta name="keywords" content="Never ending story,NES,Sveriges Begravningsbyråers Förbund,SBF,Angelbox,Angeldust,Fluffbabes,likkista,likkistor,begravning,begravningskista,glamour,champagne,lyx,glitter,blingbling,">
 <link rel="stylesheet" type="text/css" href="/includes/style.css?2,979372E+07">
 <link rel="shortcut icon" href="favicon.ico">
 <script type="text/JavaScript" src="/includes/gkutil.js"></script>
 <script type="text/JavaScript" src="/includes/mouseover.js"></script>





<SCRIPT type="text/javascript">var gksortImgDir = '/includes/';</SCRIPT>

<STYLE type="text/css">
table.sortable                { behavior:url('/includes/gksort4.htc'); }
span.editable, div.editable   { behavior:url('/includes/gkedit.htc'); }
</STYLE>

<SCRIPT type="text/javascript">




// insertAdjacentHTML simply isn't a supported function. Add this to your script: 
//
// insertAdjacentHTML(), insertAdjacentText() and insertAdjacentElement() 
// for Netscape 6/Mozilla by Thor Larholm me@jscript.dk 
// Usage: include this code segment at the beginning of your document 
// before any other Javascript contents. 

if(typeof HTMLElement!="undefined" && ! HTMLElement.prototype.insertAdjacentElement){ 

  HTMLElement.prototype.insertAdjacentElement = function (where,parsedNode) { 
    switch (where){ 
      case 'beforeBegin': 
        this.parentNode.insertBefore(parsedNode,this) 
        break; 
      case 'afterBegin': 
        this.insertBefore(parsedNode,this.firstChild); 
        break; 
      case 'beforeEnd': 
        this.appendChild(parsedNode); 
        break; 
      case 'afterEnd': 
        if (this.nextSibling) 
        this.parentNode.insertBefore(parsedNode,this.nextSibling); 
      else this.parentNode.appendChild(parsedNode); 
        break; 
    } 
  } 
  
  HTMLElement.prototype.insertAdjacentHTML = function (where,htmlStr) { 
    var r = this.ownerDocument.createRange();
    r.setStartBefore(this);
    var parsedHTML = r.createContextualFragment(htmlStr);
    this.insertAdjacentElement(where,parsedHTML)
  } 
  
  
  HTMLElement.prototype.insertAdjacentText = function (where,txtStr) { 
    var parsedText = document.createTextNode(txtStr) 
    this.insertAdjacentElement(where,parsedText) 
    } 


}

//  http://www.faqts.com/knowledge_base/view.phtml/aid/5756





function script_onload() {
  var msg = '';
  var ds = document.scripts;
  if (ds != null) {
    msg = 'script (type src)';
    for (var i=0; i<ds.length; i++) {
      msg = msg + '\n[' + (i + 0) + ']';
      if (ds[i].type)             msg = msg + '  type=' + ds[i].type
      if (ds[i].src)              msg = msg + '  href=' + ds[i].src
    }
    msg = msg + '\n'
    msg = msg + '\n'
  } else {
    msg = msg + 'no .scripts\n\n'
  }
  ds = document.styleSheets;
  if (ds != null) {
    msg = msg + 'styleSheet (type title href parentStyleSheet.href)';
    for (var i=0; i<ds.length; i++) {
      msg = msg + '\n[' + (i + 0) + ']'
      if (ds[i].type)             msg = msg + '  type=' + ds[i].type
      if (ds[i].title)            msg = msg + '  title=' + ds[i].title;
      if (ds[i].href)             msg = msg + '  href=' + ds[i].href
      if (ds[i].parentStyleSheet) msg = msg + '  parentStyleSheet.href=' + ds[i].parentStyleSheet.href;
    }
    msg = msg + '\n'
    msg = msg + '\n'
  } else {
    msg = msg + 'no .styleSheets\n\n'
  }
  
  msg = msg + 'gksortImgDir = \'' + gksortImgDir + '\'';

/*  

To insert text before an element:
  element.parentNode.insertBefore(document.createTextNode(text), element);

To insert text as the first child of an element:
  element.insertBefore(document.createTextNode(text), element.firstChild);

To insert text as the last child of an element:
  element.appendChild(document.createTextNode(text));

To insert text after an element:
  element.parentNode.insertBefore(document.createTextNode(text), element.nextSibling);



*/  

//  dbgMsg(1, 'test1');
//  dbgMsg(1, 'test2');
//  dbgMsg(1, msg);
  dbgMsg(1, msg);
  dbgMsg(1, "---------------------------");

//  document.body.onscroll = lockMenu;
//  window.onscroll = lockMenu;

  
  if (script_oldonload)
    script_oldonload();

}

function dbgMsg(level, msg) {
  if (debugLevel >= level) {
    if (dbgWin == null) {
      var dbgdiv = document.getElementById('scriptDebug');
      if (dbgdiv != null) {
        var msg2 = msg + '\n';
        if (typeof HTMLElement != "undefined"){           /* firefox */
          var parsedText = document.createTextNode(msg2) 
          dbgdiv.appendChild(parsedText); 
        } else {                                          /* IE */
          dbgdiv.insertAdjacentText('beforeEnd', msg2);
        }
      }
    } else {

      var dbgdiv = dbgWin.document.getElementById('scriptDebug');
      if (dbgdiv != null) {
        var dbgbody = dbgWin.document.body;
        var msg2 = msg + '\n';
/*
        msg2 = msg2 + 'dbgbody.scrollTop = ' + dbgbody.scrollTop + '\n';
        msg2 = msg2 + 'dbgbody.scrollHeight = ' + dbgbody.scrollHeight + '\n';
        msg2 = msg2 + 'dbgbody.clientHeight = ' + dbgbody.clientHeight + '\n';
*/
        if (typeof HTMLElement != "undefined"){           /* firefox */
          var parsedText = document.createTextNode(msg2) 
          dbgdiv.appendChild(parsedText); 
        } else {                                          /* IE */
          dbgdiv.insertAdjacentText('beforeEnd', msg2);
        }

        dbgbody.scrollTop = dbgbody.scrollHeight - dbgbody.clientHeight - 0
      }

    }
  }
}


function lockMenu() {
/*  
  if (document.documentElement && !document.documentElement.scrollTop)
// IE6 +4.01 but no scrolling going on
else if (document.documentElement && document.documentElement.scrollTop)
// IE6 +4.01 and user has scrolled
else if (document.body && document.body.scrollTop)
// IE5 or DTD 3.2
*/
  menu = document.getElementById('shopTotIf');
  menu.style.left = '120px'; //document.body.scrollLeft + document.body.clientWidth - 35;
  menu.style.top = document.body.scrollTop;
  
  
  window.status = 'setting scrollTop = ' + document.documentElement.scrollTop + 'px';
//  alert('scroll');
}

var dbgWin = null;
// var dbgWin = open("/includes/script-debug.asp", "dbgWinId", "toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=yes, resizable=yes, width=650, height=600, top=50, left=50")

var debugLevel = 1;

var script_oldonload = window.onload;
window.onload = script_onload;

</SCRIPT>


<!--[if lte IE 6]>
 
<script type="text/javascript" src="/includes/supersleight-min.js"></script>
 
<![endif]--><!--x#xINCLUDE FILE = "includes/adovbs.inc"-->

<!-- include file="../menu01.asp" -->

  <style type="text/css">
  body {background-attachment: fixed;}
  </style>

  <style type="text/css">
  #shopTotIfX  {
    position:absolute;
    width:200px;
    height:40px;
    top:70px;
    left:10px;
    border:1px solid black;
    }
  </style>




<script type="text/javascript">
var autoUpdateCart = true;
var strNoRows = 'empty :-(';
var strOneRow = '';
var strMultiRows = '';
</script>

<script type="text/javascript" src="/includes/numfmt.js"></script> 
<script type="text/JavaScript" language="JavaScript" src="/includes/shoppingCart.js"></script>



<title>Never Ending Story - A Life Testimony with a difference</title>

</head>
<body marginheight="10">

	          <a href="/neverendingstory.asp">
	          	<img src="/bilder/se.png" width="44" height="39" title="SVENSKA" alt="SWEDISH LANGUAGE" border="0">
	          </a>
					

<table class="main" border="0" align="center" valign="top" cellpadding="0" cellspacin="0" margin="0" width="830">
  <tr class="trtop">     
    <td height="200" align="right" style="padding-top:20px;padding-right:40px;">
<br>&nbsp;  	



    </td>
  </tr>  
      
  <tr>     
    <td class="menuband" valign="top">

	

<table class="menu1" border="0" xwidth="750">
  <tr>     
    <td  class="menu2">
   	
<a href="/en/default.asp" title="Home">Home</a> 	


<a href="/en/neverendingstory.asp" title="What is Never ending story?">What is Never ending story?</a> 	


<a href="/en/fluff/details/ANGEL001.asp" title="Order">Order</a>
<a href="/en/purchasing.asp" title="Purchasing info">Purchasing info</a> 	


<a href="/en/angelbox.asp" title="Angelbox">Angelbox</a> 	

<a href="/en/angeldust.asp" title="Angeldust">Angeldust</a> 	



<a href="/en/neverendingstories.asp" title="Never ending stories">Never ending stories</a> 	

<a href="/en/press.asp" title="Media Coverage">Media Coverage</a> 

<a href="/en/contact.asp" title="Contact">Contact</a> 	
 	
    </td>


  </tr>  
</table>

 
<br>
    </td>
  </tr>  
 

  <tr class="trmiddle">     
    <td class="maintext" valign="top">	




<div id="mainDIV">

  
  <form name="frmCatalog" method="post" action="/shoppingSum.asp" target="sumFrame">
  


<!-- START web SIDAN -->





<table border="0" align="center" valign="top" width="780" class="bgwhite">
  <col width="160">
  <col width="410">
  <col width="210">
	
  <tr>     

    <td class="left" valign="top">

<ul class="submenu">
	<li><span class="black"><a href="/en/neverendingstory.asp" title="What is Never ending story?">What is Never ending story?</a></span>
<br><br>

	<li><span class="black"><a href="/en/howdoiknow.asp" title="Is it right for me?">Is it right for me?</a></span>
<br><br>

	<li><span class="black"><a href="/en/funeral.asp" title="Do I want my funeral guests to experience a sense of joy and celebration?">Do I want my funeral guests to experience a sense of joy and celebration?</a></span>
<br><br>

	<li><span class="black"><a href="/en/angelbox.asp" title="Do I have to be buried in a coffin?">Do I have to be buried in a coffin?</a></span>
<br><br>


	<li><span class="black"><a href="/en/contact.asp" title="Finding answers that are right for me">Finding answers that are right for me</a></span>
<br><br>


	<li><span class="black"><a href="/en/neverendingstories.asp" title="Never ending stories">Never ending stories</a></span>
<br><br>

	<li><span class="black"><a href="/en/saidaboutus.asp" title="What people say">What people say</a></span>

<br><br>

	<li><span class="black"><a href="http://www.ext.begravningar.se/page/33" title="Find your local funeral parlour" target="_sbf">Find your local funeral parlour</a></span>



</ul>
    </td>
    
    <td class="center" valign="top">
<h1>
What is Never ending story? 
</h1> 	

<p>
Never ending story is the name of a document that 
<a href="http://www.begravningar.se" title="The Swedish Funeral Directors Association" target="_sbf">
The Swedish Funeral Directors Association (SBF)</a>
 has compiled in close collaboration with Fluffbabes.
</p>

<p>
It is a document that you will find invaluable if you want to record your personal wishes for your own funeral. So that your relatives, at some stage in the future, will be in no doubt as to how you want things done. 
</p>



<p>
To help you find different, more personal wishes (and help you take the first step and write them down) we have also made Never ending story lighter, brighter, and more optimistic in tone.  
</p>
<p>
It will be a great help to your relatives to know what your exact wishes are – but don’t forget to tell them what they are and why you chose them -  and how you want them to be put into practice.  
</p>
<p>
Never ending story helps us to do away with all the negative thoughts which are often attached to the subject of funerals. For example, we think that it’s an excellent idea to have one last party - one which might just celebrate the start of something new. 
</p>
<p>
Another possibility is of course to contact an authorised undertaker who will be able to present you with the facts and help you with all the practicalities. 
</p>



    </td>
    <td class="neright" valign="top" rowspan="2">

    	
<br><br>   	
<h3>
Would you like your own, personal copy of Never ending story? 
</h3>
<div align="center">
	<a href="/en/fluff/details/ANGEL001.asp" title="Order!">
	   	    	<img src="/bilder/ENbestall.png" border="0" width="100" height="100" alt="Order the document" title="Order the document">
	</a>
</div>   	

<p>
You can order your own personal document here. Price: 75 SEK. Free postal charge. 
</p>    	



<img src="/bilder/NeverEndingStory2.jpg" border="0" width="200" height="408" alt="NeverEndingStory" title="NeverEndingStory">



    </td>


  </tr>  

  <tr>     

    <td class="left" valign="top">

&nbsp;
    </td>
    
    <td class="center" valign="top">

<hr>

<h2>
Never ending story
</h2> 

<p>
All things have a beginning – and an end. But we believe that the end can also be a beginning. That death marks a new point of departure. Believing this means that planning a funeral doesn’t have to be so depressing after all.  
</p>
<p>
Our Never ending story is a Life Testimony with a difference. We want it to imply that death is more than just a final curtain. Firstly, we want it to show that in life, we had the courage to be the individuals we wanted to be. Also, that we, at the end of what was hopefully a long and wonderful life, make our exit in a positive spirit. In a personal way. 
</p>
<p>
We also want to make things easier for our friends and relatives when the time comes to say goodbye – partly by passing on our specific wishes concerning funeral details, and partly by passing on to them a final, personal greeting. 
</p>
<p>
In life we have all enjoyed a wonderful party or a dinner date which gave us a cherished, lasting memory. We want our funeral to be exactly like that. This is why we have created Never ending story and Angelbox by Fluffbabes (a coffin unlike any other). 
</p>
<p>
In Never ending story we have written down some points which will help you to stage the perfect farewell to your friends and loved ones. We don’t know where we’ll be going afterwards, but we do believe that it should be the occasion of our final celebration together – and perhaps a starting point for something new…  
</p>
<p>
Join us on what might turn out to be the most exciting journey ever...
</p>





    </td>


  </tr>    
</table>




</FORM>

<input type="hidden" id="initOrderRowCounts" value="0">
<input type="hidden" id="initOrderRowTotals" value="0">





<!-- artiklarna slut -->

<!-- END web SIDAN -->

    </td>
  </tr>  



  <tr class="trbottom">     
    <td align="center">

<img src="/bilder/hr.png">    
 


<table class="bottomadress" border="0" align="center" width="780">
  <tr>     
    <td width="80" valign="top" class="bottomadress2">
<a href="http://www.begravningar.se" title="Sveriges Begravningsbyråers Förbund" target="_sbf">
    	<img src="/bilder/sbf.jpg" border="0" width="69" height="66" alt="Sveriges Begravningsbyråers Förbund" title="Sveriges Begravningsbyråers Förbund">
</a>
    </td>
    <td width="100" valign="top" class="sbf"><br>
<a href="http://www.begravningar.se" title="Sveriges Begravningsbyråers Förbund" target="_sbf">
The Swedish<br>  Funeral Directors<br> Association
</a>
    </td>
    <td width="110" class="fluffbabes" valign="top">
   	
in collaboration with <br>	
<a href="/en/fluffbabes.asp" title="Fluffbabes">
    	<img src="/bilder/fluffbabes.jpg" border="0" width="100" height="35" alt="fluffbabes" title="fluffbabes">

</a>

    </td>
    <td>
&nbsp;	
    </td>
    <td width="320" align="right" valign="top" class="bottom">
<b>SBF</b> Upplagsvägen 1, 117 43 Stockholm, Sweden, 08-556 811 80<br>
<b>Customer services:</b> 020-210 210	
<br><br>

<b>Email: Never ending story:</b>
<a href="mailto:info@angelbox.se" target="_Email" title="Email">info@neverendingstory.nu</a><br>

    </td>
  </tr>  
</table>

    </td>
  </tr>  
 
</table>




<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-11367850-1");
pageTracker._trackPageview();
} catch(err) {}</script>

</body>
</html>

