// Function called by enter movie to show flash site.
function openFullExp(){
	var width = 1000;
	var height = 680;
	var scroll = 0;
	var left;
	var top;
	if (screen.width <= width){
		left = 0;
		scroll = 1;
	}else{
		left = (screen.width - width)/2;
	}
	if (screen.height <= height){
		top = 0;
		scroll = 1;
	}else{
		top = (screen.height - height)/2;
	}
	var params = 'width='+width+', height='+height+', left='+left+', top='+top+', location=0, menubar=0, resizable='+scroll+', status=0, toolbar=0, scrollbars='+scroll;
	myWindow = window.open("main.html", "mainWindow", params)
}
