﻿function Step3ContactInformationView() {
	/****************************************************/
	/*                                                  */
	/*                                                  */
	/*          Class Level Priveleged Methods          */
	/*                                                  */
	/*                                                  */
	/****************************************************/
	
	this.setCompany = function(sCompany) {
	    $("step3Company").update(sCompany);
	}
	
	this.setEmailAddress = function(sEmailAddress) {
	    $("step3Email").update(sEmailAddress);
	}
	
	this.setLocation = function(sLocation) {
	    $("step3Location").update(sLocation);
	}
	
	this.setName = function(sName) {
	    $("step3Name").update(sName);
	}
	
	this.setPhoneNumber = function(sPhoneNumber) {
	    $("step3Phone").update(sPhoneNumber);
	}
}

