function goTo(url) {
	return location.href=url;
}

function confirmMsg(message, url) {
	if (confirm(message))
		return goTo(url);
	else
		return false;
}

function swapImage(imagePath, imageId) {
	
	im = document.getElementById(imageId);
	im.src = imagePath;
}

