// Break the browser window out of frames
if (parent.frames.length > 0)
	{
		parent.location.href = location.href;
	}

// XHTML 1.0 Strict JavaScript image swap
function swapImage(id,newSrc) {
	document.getElementById(id).src = newSrc;
	}