
function changeIframe(newLocation) {
	var theLocation = '';
	
	theLocation = newLocation ? newLocation : window.location.hash;
	
	document.getElementById('bannerIframe').src = theLocation;

}

