<!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?7,356594E+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>Angelbox - an optimistic alternative to traditional coffins</title>

</head>
<body marginheight="10">

	          <a href="/angelbox.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 -->


<script type="text/javascript">var enl_gifpath='../includes/files/';</script>
<script type="text/javascript" src="../includes/files/enlargeit.js"></script>


<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>
	Angelbox - an optimistic alternative to traditional coffins.
</h1> 	
<p>
Down through the ages people have been buried in traditional, standardised coffins. Coffins which say very little about the deceased.  
</p>

<p>
We want to change all this. We also want to find a new name for the most depressing product imaginable: a burial coffin. 
</p>

<p>
An Angelbox is something completely new. There are wings on the sides instead of handles. There is a pair of wings on the lid. Wings come in two colours - gold or silver. 
</p>

	

    <img src="/bilder/angelboxPink02.jpg" width="400" title="Angelbox Pink" alt="Angelbox Pink" border="0">
 

    </td>
    <td class="right" align="right" valign="top">
<br><br>     	
  <img src="/bilder/AngelboxByFluffbabes.jpg" border="0" width="150" height="113" alt="AngelboxByFluffbabes" title="AngelboxByFluffbabes">  <br>   	
  <img src="/bilder/angelboxPink02small.jpg" width="150px" height="56px" border="0" title="Angelbox Pink" alt="Angelbox Pink" id="pic1" class="set1" onclick="enlarge(this);" longdesc="/bilder/angelboxPink.jpg"><br> 
  <img src="/bilder/angelboxWhite02small.jpg" width="150px" height="55px" border="0" title="Angelbox White" alt="Angelbox White" id="pic2" class="set1" onclick="enlarge(this);" longdesc="/bilder/AngelboxWhite.jpg"><br> 
  <img src="/bilder/angelboxBlack02small.jpg" width="150px" height="56px" border="0" title="Angelbox Black" alt="Angelbox Black" id="pic3" class="set1" onclick="enlarge(this);" longdesc="/bilder/AngelboxBlack.jpg">

<a href="http://www.rydens.se" title="Rydéns" target="_Rydens">    	
  <img src="/bilder/rydens.gif" border="0" width="150" height="62" alt="Rydéns" title="Rydéns">  
</a>     	
 	
    </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>

