//--------------------------------------------------------------------------------------------------------------------------------------- 
// All material contained within this and associated downloaded pages is the property of 4thorder(TM) 
// Copyright © 2005. All rights reserved. 
// 
// Author: Michael Falatine ¦¦ Author's email: 4thorder@4thorder.us 
// 
// USAGE: You may use this script for commercial or personal use, however, the copyright is retained- by 4thorder (TM). 
// 
// For other free Scripts visit: http://www.4thorder.us/Scripts/ 
//---------------------------------------------------------------------------------------------------------------------------------------- 
window.onload=getPassedInfo;

function getPassedInfo() 
{ 
// Grab URL String 
var URLString=window.location.href

//Determine length of entire string 
wholePathLength=URLString.length;

// Determine length of string without the passed variable value 
strippedPathLength=URLString.substring(0,URLString.lastIndexOf("=")).length+1;

// Use Substring to isolate the passed value 
info= URLString.substring(strippedPathLength,wholePathLength);

// Send information to form element for viewing 
document.getElementById("passedInfo").value=info 
} 
