<!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,891956E+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="/neverendingstories.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>
Never Ending Stories
</h1> 	


<p>
Sometimes an interesting event occurs in connection with a death or a burial. They are often stories that are worth retelling. We have compiled a small collection. 
</p>
<p>
(Click heading to see the story in full) 
</p>


<!-- -->

<a href="#tips3" NAME="chkLevC" VALUE="checked"  
onclick="javascript:var e=document.getElementById('levDataC').style; e.display = 
 ( e.display == 'none') ? '' : 'none';return 0;" >	
<h2>
Michael Jackson’s burial site under camera surveillance 
</h2>
</a>


<div id="levDataC" STYLE="display:none;" class="stories">
  
<p><a name="tips3"></a></p> 

<p>
Michael Jackson is buried in the Forrest Lawn Memorial Park in the Glendale suburb of Los Angeles. It’s a graveyard which is different from other “Celebrity cemeteries” as there are no maps showing the situation of the various graves. In close proximity to Jackson rest Hollywood legends such as Clark Gable, Jean Harlow and Carole Lombard. 

</p>
<p>
Visitors are not supposed to walk around looking for Jackson’s enormous mausoleum – or that of any other celebrity. Forrest Lawn is well-known for its rigorous protection of the privacy of its “residents” and there are CCTV cameras all round Jackson’s mausoleum. Anyone who gets too close is simply kicked out. 
</p>
<p>
A tip for those who want to visit celebrity graves in other cemeteries: contact the tourist agency owned by Scott Michaels in Los Angeles. Scott Michaels specialises in organising tours of the burial sites of deceased celebrities.  
</p>


</div>


<!-- -->
<!-- -->

<a href="#tips2" NAME="chkLevB" VALUE="checked"  
onclick="javascript:var e=document.getElementById('levDataB').style; e.display = 
 ( e.display == 'none') ? '' : 'none';return 0;" >	
<h2>
Auctioned off  husband’s grave opposite to Marilyn Monroe’s. 
</h2>
</a>


<div id="levDataB" STYLE="display:none;" class="stories">
  
<p><a name="tips2"></a></p> 

<p>
Movie legend Marilyn Monroe is buried in the Pierce Brothers Westwood Village Memorial Park cemetery in Los Angeles, USA. Other celebrities buried here are Dean Martin, Roy Orbison, Truman Capote, Natalie Wood and lately deceased Farrah Fawcett, to name but a few. 
</p>
<p>
For a while Richard Poncher will also be buried there. He was laid to rest 23 years ago but now his widow, Elsie, has auctioned off his site – a crypt – which happens to be placed directly opposite Marilyn Monroe’s! 
</p>
<p>
Elsie’s husband will soon be moved to the site that Elsie had originally purchased for herself. But this doesn’t worry the widow: - He was afraid of nothing and was one hell of a guy, she told the LA Times. 
</p>
<p>
It’s a story that contains some fascinating details, one being that Richard Poncher bought the site from Joe diMaggio, who wanted to get rid of it when he was divorced from Marilyn Monroe in 1954. Another is that when Richard Ponter was on his death bed, he threatened to haunt his wife for the rest of her life if she didn’t bury him face-down in the direction of Marilyn! 
</p>
<p>
Anyway, the widow has now auctioned off her husband’s crypt on Ebay for the dizzy sum of 4.6 mio dollars! Reportedly in order to pay her debts….
</p>



</div>


<!-- -->
<a href="#tips1" NAME="chkLevA" VALUE="checked"  
onclick="javascript:var e=document.getElementById('levDataA').style; e.display = 
 ( e.display == 'none') ? '' : 'none';return 0;" >	
<h2>
Ryan O'Neal meets his own daughter at the burial of Farrah Fawcett. 
</h2>
</a>


<div id="levDataA" STYLE="display:none;" class="stories">
  
<p><a name="tips1"></a></p> 
<p>
Ryan O’Neal’s relationship with his daughter, Tatum O’Neal, seems unusual to put it mildly. 
</p>
<p>
In Vanity Fair, Ryan admits that he made the mistake of flirting with his daughter at the funeral of her mother, Farrah Fawcett.
</p>
<p>
– I had just watched the coffin being driven away when a beautiful blond woman came over and hugged me, says Ryan.
</p>
<p>
On which he found it hard to contain himself: <br>
- I asked her, “Have you got a drink? Have you got a car?”
<br> 
To which she replied: "Dad it’s me - Tatum!", says Ryan. 
</p>
<p>
Ryan admits that the situation was bizarre.<br>

– I just wanted to have a bit of fun with this unknown Swedish woman, and she turned out to be my daughter. It’s sick, I suppose.  
</p>
<p>
Tatum agrees with her father that the incident was unpleasant, but adds that she is not surprised that he didn’t recognise her.
</p>
<p>
– That’s our relationship in a nutshell. You can believe it or not. It’s been a few years since we saw each other and he’s always been a womaniser, says Tatum to Hollywood Access.
</p>


</div>




    </td>
    <td class="neright" valign="top">

    	
<br><br>   	

<img src="/bilder/flufflegs.jpg" border="0" width="200" xheight="408" alt="NeverEndingStory" title="NeverEndingStory">

    </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>

