﻿
function hideLinksAllLinks()
{
	document.getElementById('customerLinks').style.display = 'none';
	document.getElementById('vendorLinks').style.display = 'none';
}

function displayLinksCustomerLinks()
{
	hideLinksAllLinks();
	document.getElementById('customerLinks').style.display = 'block';
	document.getElementById('pageHeader').innerHTML = 'Customer Links & Testimonials';
}

function displayLinksVendorLinks()
{
	hideLinksAllLinks();
	document.getElementById('vendorLinks').style.display = 'block';
	document.getElementById('pageHeader').innerHTML = 'Vendor Links & Testimonials';
}
