
////////////////////////////////
//Créateur : Yves Prince		yprince@odacia-studio.com
//Dernière Mise à jour : 30 novembre 2007
//Par : Yves Prince		yprince@odacia-studio.com
//
//Games
////////////////////////////////

function game(id,gn,v,w,h,bg,lng,path)
{
	leleft=(screen.width-w)/2
	letop=(screen.height-h)/2
	
	try{
		games.close();
	}
	catch(e){};
	
	games=window.open(path+'games.php?id='+id+'&gn='+gn+'&lng='+lng+'&bg='+bg+'&v='+v+'&w='+w+'&h='+h, 'game'+id, 'width='+w+',height='+h+',toolbar=0,scrollbars=0,statusbar=0,menubar=0,resizable=0,left='+leleft+',top='+letop+'');
	games.focus()
}