function changeData(view,section) {
	if (view == "ourProcess"){
		if (document.all){
			document.getElementById(view).changeTextInfo(section);
		} else {
			document.ourProcess.changeTextInfo(section);
		}
	} else if (view == "ourPricing"){
		if (section == "speedQuoter"){
			popUp('speedQuoter', '/speedquoter/', 850, 650);
		} else if(section == "savvyPricer") {
			popUp('savvyPricer', '/savvypricer/', 900, 675);
		} else {
			if (document.all){
				document.getElementById(view).changeDemoData(section);
			} else{
				document.ourPricing.changeDemoData(section);
			}
		}
	} else if (view == "ourWork"){
		if (document.all){
			document.getElementById(view).changeDemoData(section);
		} else {
			document.ourWork.changeDemoData(section);
		}
	} else if (view == "ourClients"){
		if (document.all){
			document.getElementById(view).changeTextInfo(section);
		} else {
			document.ourClients.changeTextInfo(section);
		}
	} else if (view == "ourServices"){
		if (document.all){
			document.getElementById(view).changeDemoData(section);
		} else {
			document.ourServices.changeDemoData(section);
		}
	}
}
