/*
function __openPopup(lang)
{
	if (lang=="fr" || lang=="uk")
	popCenter('./html/popup_voeux_'+lang+'.html', 'ie', '984', '579');
}
*/
function openFromFlash(url)
{
  if (navigator.appName.indexOf("Microsoft") != -1) newWin = window.open(url, 'newWin','width=10,height=10');
  else window.location = url;
}

function popCenter(bUrl, bName, bWidth, bHeight)
{
	var centerX = (screen.width - bWidth) / 2;
	var centerY = (screen.height - bHeight) / 2;
	var viewerpop = window.open(bUrl,"hello",'location=no, toolbar=no, directories=no, menubar=no, resizable=no, scrollbars=yes,status=no,width='+bWidth+',height='+bHeight+',left='+centerX+',top='+centerY);
}