function launchwin(url, nomFenetre, parametres)
	{
	// internet explorer windows
	if(window.external)
	{
	pop = window.open(url, nomFenetre, parametres);
	larg = screen.availWidth/2;
	haut = screen.availWidtht/2;
	wlarg = window.innerWidth/2;
	whaut = window.innerHeight/2;
	pop.focus();
	pop.moveTo((larg - wlarg ),(haut - whaut));
	}
	// netscape 6.x - firefox
	if (window.sidebar)
	{
	pop = window.open(url, nomFenetre, parametres);
	larg = screen.width/2;
	haut = screen.height/2;
	wlarg = pop.innerWidth/2;
	whaut = pop.innerHeight/2;
	pop.moveTo((larg - wlarg),(haut - whaut));
	}
	else
	{
	pop = window.open(url, nomFenetre, parametres);
	larg = screen.width/2;
	haut = screen.height/2;
	wlarg = pop.innerWidth/2;
	whaut = pop.innerHeight/2;
	pop.moveTo((larg - wlarg),(haut - whaut));
	}
}
function fullwin(url, nomFenetre, parametres)
	{
	big = window.open(url, nomFenetre, parametres);
	big.resizeTo(screen.width,screen.height);
	big.moveTo(0,0);
	}
function tofull()
	{	
	window.resizeTo(screen.width,screen.height);
	window.moveTo(0,0);
	window.resizeTo(screen.width,screen.height);
	window.moveTo(0,0);
	}

function closewin()
	{
	window.opener=self;
	window.close();
	}

function torestore800600()
	{
	larg = screen.width/2;
	haut = screen.height/2;
	window.resizeTo(800,600);
	window.moveTo((larg-400),(haut-300));
	}
function torestore1024768()
	{
	larg = screen.width/2;
	haut = screen.height/2;
	window.resizeTo(1024,768);
	window.moveTo((larg-512),(haut-384));
	}
function vb()
	{
	document.write('<script language="VBScript">');
	document.write('Sub flashMovie_FSCommand(ByVal command, ByVal args)');
	document.write('call flashMovie_DoFSCommand(command, args)');
	document.write('end sub');
	document.write('}');
	}


