// JavaScript Document
function openNewWindow(type){
	if(type == 'simulation'){
		simulation = window.open('../main_d/index.html','simulation','Width=525,height=850,scrollbars=yes,location=no');
		simulation.focus();
	}else if(type == 'enquete'){
		enquete = window.open('../main_e/index.php','enquete','Width=525,height=800,scrollbars=yes,location=no');
		enquete.focus();
	}else if(type == 'siteview'){
		siteviewer = window.open('../view/index.html','viewer','width=506,height=755,menubar=no,toolbar=no,location=no,resizable=no,scrollbars=yes,left=5');
		siteviewer.focus();
	}
}

function openMovieView(process_fase)
{
	switch(process_fase){
		case 1:
			window.open('../main_a2/process_1.html','MovieViewer','Width=680px,height=430px,scrollbars=yes,location=no');
			break;
		case 2:
			window.open('../main_a2/process_2.html','MovieViewer','Width=680px,height=430px,scrollbars=yes,location=no');
			break;
		case 3:
			window.open('../main_a2/process_3.html','MovieViewer','Width=680px,height=430px,scrollbars=yes,location=no');
			break;
		case 4:
			window.open('../main_a2/process_4.html','MovieViewer','Width=680px,height=430px,scrollbars=yes,location=no');
			break;
		case 5:
			window.open('../main_a2/process_5.html','MovieViewer','Width=680px,height=430px,scrollbars=yes,location=no');
			break;
		case 6:
			window.open('../main_a2/process_6.html','MovieViewer','Width=680px,height=430px,scrollbars=yes,location=no');
			break;
		case 7:
			window.open('../main_a2/process_7.html','MovieViewer','Width=680px,height=430px,scrollbars=yes,location=no');
			break;
		case 8:
			window.open('../main_a2/process_8.html','MovieViewer','Width=680px,height=430px,scrollbars=yes,location=no');
			break;
	}
		
}


