// JavaScript Document

function openWindow_flash_intro() {
	openWindow_small( "intro.html" , "movie" );
}

function openWindow_small(url,win_name) {
	winwidth = 630
	winheight = 473
	window.name = "win";
	sw = screen.availWidth;
	sh = screen.availHeight;
	wl = (sw-winwidth)/2;
	wt = (sh-winwidth)/2;
	win = window.open(url,win_name,"width=" + winwidth + ",height=" + winheight + ",,menubar=no,toolbar=no,SCROLLBARS=yes,resizable=yes,left=" + wl + ",top=" + wt);
}



