function swapImage(element, url)
{
	
	element.src = url;
	
}

function goUrl(url)
{
	
	document.location.href = url;
	
}
