// Simple method of "transcluding" a piece of HTML in many docs with JavaScript
//     http://en.wikipedia.org/wiki/Transclusion
// This way we can change the disclaimer for all album reviews easily, without editing each article.
//
// Usage should be, for example:
///
// <script type="text/javascript" src="reviewheader.js"> </script>
// <script type="text/javascript">
//    ReviewHeader("http://www.vitalweekly.net/529.html", "Vital Weekly"); 
// </script>

function ReviewHeader(source,url) {
	document.write('<table class="metadata plainlinks" style="background:#FBFBFB none repeat scroll 0% 0%; border-color:#AAAAAA rgb(170, 170, 170) rgb(170, 170, 170) rgb(30, 144, 255); border-style:solid; border-width:1px 1px 1px 10px; margin:-1px 10% 0px; border-left:10px solid #CC3299;"><tr><td style="border:medium none; padding:2px 0pt 2px 0.5em; text-align:center;"><div style="width: 42px;"><img alt="Hourglass" src="/pictures/archive/scroll_40x40.png" width="40" height="40" border="0" /></div></td><td style="border:medium none; padding:0.25em 0.5em; width:100%;"><b>Read the full article at <a href="' + url + '">' + source + '</a>.</b><br /><br /><small>LegendaryPinkDots.org archives information of interest to fans in the same spirit as the <a href="http://archive.org">Internet Archive</a> or <a href="http://www.googleguide.com/cached_pages.html">Google Cache</a>.  All content remains property of its original owner, and we do our best to retain the integrity of the author\'s links and give proper credit.  However, if you are the copyright owner and do NOT wish to be linked to by LegendaryPinkDots.org, please <a href="http://legendarypinkdots.org/contact">contact us</a> and we will delete this article.</small></td></tr></table><br />');
};