<!--

function launchFlash() {

	// Create new browser window
	var winwidth = 600;
	var winheight = 600;
	var wintop =  (screen.availHeight - winheight) / 2;
	var winleft = (screen.availWidth - winwidth) / 2;
	
	window.open ('flash.html','flash','width=' + winwidth + ',height=' + winheight + ',top=' + wintop + ',left=' + winleft + ', resizable=no');
	
}

// -->