///////////////////////////////////
//
//	Focus function.
//
// 	File:			SetFocus.js
//	Description:	
//
//	Revision history:
//	v1		20Nov98		pjhd	Created
//	v2		30Nov98		pjhd	Corrected Javascript.
//	v3		01Jan99		pjhd	Removed junk.
//
///////////////////////////////////


///////////////////////////////////
//
//	setFocus
//
//	Description:
//  Called from onLoad event field.
//
//	Revision history:
//	v1		20Nov98		pjhd	Created
//	v2		30Nov98		pjhd	Corrected Javascript.
//	v3		01Jan99		pjhd	Removed junk.
//
function setFocus(t_sElementName)
{
	var eElement;
	
	eElement = document.forms[0].elements(t_sElementName);
	eElement.focus();
	
	// Debug.
	// alert(t_sElementName);
}
