/*
	Javascript code written by PSLWeb.co.uk for Stamford Renewables Limited (www.stamfordrenewables.com)
	(except where noted). Copyright ©2008 PSLWeb.co.uk - All Rights Reserved.
*/
/*
	Function:    setReferer
	Called From: loginForm
	Inputs:		 None
	Output:		 None. Modifies form field 'refURL' with the URL of the calling page.
	Description: Sets a form field to the current page URL to send to the server. This URL is used by
					Process Login to return to the same page.
*/
/*function setReferer() {
	refURL = document.getElementById('refURL');
	if (refURL)
		refURL.value = document.location;
}*/