function HidePrice() {
	tsGetElementById('PricingStructure').style.display = 'none';
	tsGetElementById('PricingShowHide').innerHTML = '<a href="javascript:ShowPrice();" title="Show pricing structure" class="ShowButton">Show pricing structure</a>';
}
function ShowPrice() {
	tsGetElementById('PricingStructure').style.display = '';
	tsGetElementById('PricingShowHide').innerHTML = '<a href="javascript:HidePrice();" title="Hide pricing structure" class="HideButton">Hide pricing structure</a>';
}
function HideSpecification() {
	tsGetElementById('Specification').style.display = 'none';
	tsGetElementById('SpecificationShowHide').innerHTML = '<a href="javascript:ShowSpecification();" title="Show specification" class="ShowButton">Show specification</a>';
}
function ShowSpecification() {
	tsGetElementById('Specification').style.display = '';
	tsGetElementById('SpecificationShowHide').innerHTML = '<a href="javascript:HideSpecification();" title="Hide specification" class="HideButton">Hide specification</a>';
}
