<!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,914884E+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="/kopinfo.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">
<br>
&nbsp;
    </td>
    
    <td class="center" valign="top">
<h1>
Purchasing details
</h1> 	

<p>
<b>This is how easy it is to buy Never ending story: </b>
</p>

<p>
On the order page, enter the number of items you want, or click on the BUY button. When you are ready, click on the CHECK OUT button. Once there, simply enter the delivery address of your choice.  
</p>

<p>
Remember that you must allow JavaScript and cookies if you want to do some shopping!
</p>

<p>
To change the number of items, simply delete and change in the box – or use the + / - buttons. 
</p>

<p>
<b>Currency</b><br>

All prices are in Swedish currency (SEK) 
</p>

<p>
<b>Payment</b><br>

You can use a credit card (VISA or Mastercard) – or by invoice (only in Sweden) or in advance to (Swedbank)bankno: 5517-7455. 
</p>

<p>
In processing payments made by bank card, we use Auriga ePayment. We expect the card submitted by you to be  your own. Your credit card company will validate withdrawal from your account. While your details are being transferred to Auriga ePayment, there may be a delay. This is quite normal. Please wait until you receive confirmation from our shop so that the transfer process is not interrupted.  
</p>

<p>
Invoices are administered by 
<a href="http://www.kreditor.se" title="" target="_Kreditor">
Klarna (former Kreditor)
</a> and invoices will be sent to you with your order. 
When you place your order, Klarna will verify your name, Civil Registration Number and address. Customers must be at least 18 years of age. Invoices incur a surcharge of 29 SEK and payment must be made within 14 days. Invoices will be sent only to Swedish addresses.
</p>

<p>
We cannot be held responsible for the delivery of your purchase. Should a problem arise with your purchase, delivery will be delayed. We have ensured the utmost security for our site. We do everything in our power to protect your credit card details. We use Secure Socket Layer (SSL) technology. SSL encrypts and protects all data sent to us on the internet. In other words, we’ve done all we can to make your purchase as safe as possible. However, should anything arise to prevent your purchase, we can unfortunately not be held responsible.
</p>

<p>
<b>Delivery</b><br>

Letters will be dispatched with the swedish Posten. Delivery time is up to 3 weekdays. 
</p>

<p>
<b>Waiting for delivery</b><br>

Once you have placed an order with us you will receive email confirmation of your order. This is not however an acceptance of your order. In the worst case scenario we may have to send you a new email (if products are out of stock – see above). If you have not cancelled your order, acceptance will mean that your order will be sent to you. It is only at this stage that we will withdraw payment from the bank card that you have submitted. We claim the right to withhold delivery if we find reason to do so. In such cases no payment will be withdrawn from your account.
</p>

<p>

<b>Refund</b><br>

Refund adress:<br>
Fluffbabes c/o DsineNet<br>
Linjalvägen 6A<br>
187 66 TÄBY<br>
Sweden
<br><br>
Refunds will be made within 30 days of our receiving notification from you that you wish to cancel your order. If the returned products are intact, and if you have paid by bank card, a refund will be deposited in your account.  
</p>

<p>
Disputes will be treated in accordance with Swedish legislation.  
</p>

<p>
Fluffbabes International AB Org nr: 556698-6906 F-tax VAT: SE556698690601
</p>

    </td>
    <td class="right" valign="top">
&nbsp;<br>
    </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>

