/**
* Assign the view handler
*/

viewHandler = Contact;

/**
* Creates a new WebPage object with methods used by the Contact page
*
* @author				Matt Gifford
* @copyright			2007 Timeshifting Interactive Limited
*/
function Contact()
	{
	// Step 1. Define Properties

	var _instance = this;



	// Step 2. Define Public Methods

	/**
	* Sets up the initial page state and event handlers
	*/
	this.init = function()
		{
		// Call generic page init method
		this.base.init.call(this);

		// Initialize the select lists
		this.selectLists = new SelectLists();
		}
	}
