function fixflash(containerID){
var flashContainer = document.getElementById(containerID);
var flashMovie = document.createElement("div");
flashMovie.innerHTML = flashContainer.innerHTML.replace(/</g, "<").replace(/>/g, ">");
flashContainer.parentNode.insertBefore(flashMovie, flashContainer);
flashContainer.parentNode.removeChild(flashContainer);
flashMovie.setAttribute("id",containerID);
}
function changeStyleByLocation(myLocation)
{
	document.getElementById('Location').value = myLocation;
 	var myLocationString = document.getElementById('Location').value;
	switch (myLocationString){
		case 'http://www.eitzchaimpdx.org/content.php?id=47': {longPage()} break
		case 'http://eitzchaimpdx.org/content.php?id=47': {longPage()} break
	}
}
function longPage(){
	document.getElementById('mainPage').style.paddingLeft = '0px';
	document.getElementById('rightPanel').style.width = '160px';
}
