function DisplayContactInfo(){
	var sPhone = "877.241.0540";
	var sEmail = "support@websrvcs.com";
	if(host.indexOf("lifewaylink.com")!=-1){
		sPhone = "800.221.5167";
		sEmail = "support@lifewaylink.net";
	}else if(host.indexOf("rchurch.com")!=-1){
		sPhone = "877.241.0540";
		sEmail = "support@rchurch.com";
	}else if(host.indexOf("churchsitecreator.com")!=-1){
		sPhone = "888.942.6607";
		sEmail = "support@websrvcs.com";
	}else if(host.indexOf("peopleteams.org")!=-1){
		sPhone = "N/A";
		sEmail = "support@websrvcs.com";
	}else if(host.indexOf("e-zekiel.com")!=-1){
		sPhone = "888.942.6607";
		sEmail = "support@e-zekiel.com";
	}
	document.open();
	document.write("<div><b>Phone:</b> "+ sPhone +"</div>");
	document.write ("<div><b>Email:</b> <a href=\"mailto:"+ sEmail +"\">"+ sEmail +"</a></div>");
	document.close();
}
DisplayContactInfo();