<!--

function load_flash_site() {
	
	openW('flash.html', 800, 600, 'no');
	
	return false;
	
}

function load_flash_siteII() {
	
	openW('phase_II/flash.html', 800, 600, 'no');
	
	return false;
	
}

function load_flash_site_en() {
	
	openW('english/flash.html', 800, 600, 'no');
	
	return false;
	
}

function openW(urlW, width_w, height_w, scroll_bar) {

	center_x = Math.round((window.screen.availWidth - width_w) / 2);
	center_y = Math.round((window.screen.availHeight - height_w) / 2);
	
	window.open(urlW, '_blank', 'top=' + center_y + ',left=' + center_x + ',width=' + width_w + ',height=' + height_w + ',status=no,titlebar=no,toolbar=no,menubar=no,location=no,resizable=no,directories=no,scrollbars=' + scroll_bar);

}

//-->

