 // Determine Return Button path
 // Default vars
 var Origin='Shea Ministries Home Page';
 var linkA = '<a href="'; // First part of button link
 var linkB = 'http://www.sheaministries.org/';; // Return to Home Page
 var linkC = '"><img border="0" src="../images/buttons/prayer_return.gif" alt="Return to Shea Ministries Home Page" width="100" height="24">';

 var address = window.location;   // URL address of this page
 text = address.toString();   // Convert address object to string
 var q = text.lastIndexOf("?");   // Locate passcode separator position
 var len = text.length;   
 var passcode = text.substring(q+1,len);   // Extract passcode
 
 // Determine return path
 if (passcode=='ccedl') { linkB='http://christcenter.tsmj.org/'; Origin='Christ Center'; }
 if (passcode=='home') { linkB='http://www.sheaministries.org/'; Origin='Shea Ministries Home Page'; }
 if (passcode=='23rdPsalm') { linkB='http://www.sheaministries.org/chapel/psalm/psalm.htm'; Origin='The 23rd Psalm'; }
 if (passcode=='candle') { linkB='http://www.sheaministries.org/chapel/candle/index.htm'; Origin='Prayer Candle Room'; }
 if (passcode=='forgive') { linkB='http://www.sheaministries.org/chapel/forgive.htm'; Origin='Prayer Window for Forgiveness'; }
 if (passcode=='guide') { linkB='http://www.sheaministries.org/chapel/guide.htm'; Origin='Prayer Window for Guidance'; }
 if (passcode=='harmony') { linkB='http://www.sheaministries.org/chapel/harmony.htm'; Origin='Prayer Window for Harmony'; }
 if (passcode=='heal') { linkB='http://www.sheaministries.org/chapel/heal.htm'; Origin='Prayer Window for Healing'; }
 if (passcode=='lord') { linkB='http://www.sheaministries.org/chapel/psalm/prayer.htm'; Origin='The Lord\'s Prayer'; }
 if (passcode=='love') { linkB='http://www.sheaministries.org/chapel/love.htm'; Origin='Prayer Window for Companionship'; }
 if (passcode=='protect') { linkB='http://www.sheaministries.org/chapel/protect.htm'; Origin='Prayer Window for Protection'; }
 if (passcode=='prosperity') { linkB='http://www.sheaministries.org/chapel/prosperity.htm'; Origin='Prayer Window for Prosperity'; }
 if (passcode=='release') { linkB='http://www.sheaministries.org/chapel/release.htm'; Origin='Prayer Window for Release'; }
 if (passcode=='window') { linkB='http://www.sheaministries.org/chapel/windows.htm'; Origin='Prayer Windows'; }
 if (passcode=='memorial') { linkB='http://www.sheaministries.org/chapel/memorial/index.htm'; Origin='Memorial Candles'; } 
 if (passcode=='memorial_win') { linkB='http://www.sheaministries.org/chapel/memorial/index_win.htm'; Origin='Memorial Candles'; } 
 if (passcode=='ccel') { linkB='http://www.sheaministries.org/ccel_info/index.htm#christ'; Origin='CCEL Info on TSM'; } 

 var linkC = '"><img border="0" src="../images/buttons/prayer_return.gif" alt="Return to ' + Origin + '" width="100" height="24">'; 
 
 var button = linkA + linkB + linkC;
 
 // Hidden Input for Origin
HiddenInput = ' <input type="hidden" name="Origin" value="' + Origin + '">';