// JavaScript Document

function showAddress(location)
{
var displayArea = document.getElementById('swapDisplay');
var UK = document.getElementById('swapUK');
var ESP = document.getElementById('swapESP');
var targLink = document.getElementById('swap'+location);
UK.style.color = '#666666';
ESP.style.color = '#666666';
targLink.style.color = '#990000';
	if(location == 'UK'){
		displayArea.innerHTML = "<p>Large Yacht Solutions Ltd | Princess Court | Horace Road | Kingston Upon Thames | Surrey | KT1 2SL | United Kingdom<br />T: +44 (0) 870 850 2317 | F: +44 (0) 870 850 2318</p>";
	}
	if(location == 'ESP'){
		displayArea.innerHTML = "<p>Large Yacht Refit | Paseo Juan de Borbo&ntilde; 92 | Barcelona | 08003 | Spain<br />T: +34 (0) 678 126 771 | F: +34 (0) 932 215 805</p>";
	}
	
}