function cPasswordProtectedContent( FormActionAttribute )
{
	// Parameters
	this.m_FormActionAttribute = FormActionAttribute;

	// Function that runs when the page loads
	//
	this.onLoad = function()
	{
		// Set the form tag's action attribute to the specified override value
		if( this.m_FormActionAttribute.length > 0 )
			document.forms[0].action = this.m_FormActionAttribute;
	};
	
	return this;
}

