
		var ie = document.all;
		var iInnerHeight;
		
		function writeHeightSpacer()
		{
			if (ie) iInnerHeight = document.body.offsetHeight;
			else iInnerHeight = window.innerHeight;
			
			var iSpacerHeight = iInnerHeight - 126;
			document.write("<img src='images/spacer.gif' width='2' height='"+ iSpacerHeight +"' border='0'>");
		}
		
		oFV = new formValidator();
		
		oFV.addRequired('firstName', 'First Name');
		oFV.addRequired('lastName', 'Last Name');
		oFV.addRequired('emailAddress', 'Email Address');
		oFV.addRequired('phoneNumber', 'Business Phone');
		oFV.addRequired('postCode', 'Post Code');
		//oFV.addRequired('carValue', 'Car Value');
		//oFV.addRequired('salary', 'Salary');
		oFV.addRequired('contactTime', 'Contact Time');
		oFV.addRequired('terms', 'Terms & Conditions');
		
		oFV.validateName('firstName', 'First Name');
		oFV.validateName('lastName', 'Last Name');
		oFV.validateEmail('emailAddress', 'Email Address');