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 changeMainPage(myLocation)
{
	document.getElementById('Location').value = myLocation;
 	var myLocationString = document.getElementById('Location').value;
	if (myLocationString == 'http://62.90.102.103/~compactu/index.php'){
		document.getElementById('MainContent').innerHTML = '<csme content=text prop=1></csme>';
	}
	else document.getElementById('MainContent').innerHTML = '<csme content=page></csme>';
}

