| |
<!--
<!-- Begin
// ADDITIONAL NOTES
// The input variables to the toggle function are the number of the submenu to open/close,
// starting with 0, and the number of pixels to move the objects below.
// For example toggle(1,60) opens/closes the second submenu and moves the objects below 60 pixels.
var nom = 9; // Number of menus
var usePictures = 1; // use pictures? 1 = yes, 0 = no
var ttls = new Array(); // An array for the title objects
var subs = new Array(); // An array for the submenu objects
var lastn;
var lastmove;
if (document.layers) {
visible = 'show';
hidden = 'hide';
}
else
if (document.all) {
visible = 'visible';
hidden = 'hidden';
}
for (var i = 1; i <= nom; i++) {
ttls[i] = ('title' + i);
subs[i] = ('submenu' +i);
}
function picopen(n) {
title = ('title' + n);
pic = ('pic' + n);
if (document.layers) {
document.layers[title].document.images[pic].src = "assets/images/opened.gif";
}
else if (document.all) {
document.all(pic).src = "assets/images/opened.gif";
}
}
function picclose(n) {
title = ('title' + n);
pic = ('pic' + n);
if (document.layers) {
document.layers[title].document.images[pic].src = "assets/images/closed.gif";
}
else if (document.all) {
document.all(pic).src = "assets/images/closed.gif";
}
}
lastn = (nom + 1);
lastmove = 0;
function lasttoggle(n,move) {
if (n <= nom) {
menu = ('submenu' + n);
if (document.layers) {
submenu = document.layers[menu];
}
else if (document.all) {
submenu = document.all(menu).style;
}
if (submenu.visibility == visible) {
submenu.visibility = hidden;
picclose(n); // Remove this if you don't use pictures
for (var i = (n+1); i <= nom; i++) {
if (document.layers) {
document.layers[ttls[i]].top -= move;
document.layers[subs[i]].top -= move;
}
else if (document.all) {
document.all(ttls[i]).style.pixelTop -= move;
document.all(subs[i]).style.pixelTop -= move;
}
}
}
}
}
function toggle(n,move) {
menu = ('submenu' + n);
if (document.layers) {
submenu = document.layers[menu];
}
else if (document.all) {
submenu = document.all(menu).style;
}
if (submenu.visibility == visible) {
submenu.visibility = hidden;
if (usePictures) picclose(n);
for (var i = (n+1); i <= nom; i++) {
if (document.layers) {
document.layers[ttls[i]].top -= move;
document.layers[subs[i]].top -= move;
}
else if (document.all) {
document.all(ttls[i]).style.pixelTop -= move;
document.all(subs[i]).style.pixelTop -= move;
}
}
}
else {
submenu.visibility = visible;
if (usePictures) picopen(n);
if (lastn != n) {
lasttoggle(lastn,lastmove);
}
for (var i = (n+1); i <= nom; i++) {
if (document.layers) {
document.layers[ttls[i]].top += move;
document.layers[subs[i]].top += move;
}
if (document.all) {
document.all(ttls[i]).style.pixelTop += move;
document.all(subs[i]).style.pixelTop += move;
}
}
}
lastn = n;
lastmove = move;
}
// End -->
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
 |
True
or just a story invented later?
William Palmer is credited with having said, as he stepped upon the trap
door on the scaffold, "Are you sure this damn thing's safe?"
found on the http://victorian.fortunecity.com/churchmews/599/lastwords/lastword.htm
site and subsequently on several other web sites.
However
I cannot find any reference to him having spoken these words in any of
the contemporary accounts of his execution.
Last
words as reported in 1856
In the Illustrated Life, Career, and Trial of William Palmer of Rugeley
published in 1856 it stated that, "After a brief prayer with the
chaplain, he turned to the hangman, had the rope put round his neck, and
the long cap drawn over his face. He then shook hands with his executioner
, said, in a low voice, "God bless you;" and as the last
word issued from his lips the bolt was withdrawn, the drop fell, and, after
a slight convulsion of the limbs, he hung lifelessly from the gallows.
So well had everything been managed by the hangman, so nicely had the fatal
cord been adjusted, and so clear was the fall of the drop, that death was
all but instantaneous."
Bubbles
and Indigestion:
In Fletcher's book The Life & Career of dr. William Palmer of Rugeley
we are told that "On the morning of his execution, when the hangman
came in to his cell, he was offered some wine before he was pinioned. When
it was brought and poured out quickly, he blew off some bubbles and remarked
"They always give me indigestion next morning if I drink in a hurry."
Within less than ten minutes he was dead"
Guilty
or Not Guilty?
Before the execution party were due to start their walk to the gallows
the Governor asked Palmer to agree that the sentence was just. Palmer replied,
"Cook did not die from strychnine". The governor told
Palmer "This is not a time for quibbling. Did you, or did you not
, kill Cook?" Palmer answered, "The Lord Chief Justice summed
up for poisoning by strychnine."
|