var _swfID;
var _listURL = "https://noel-magique.auchan.fr/liste.html";
var _popupName = "auchanListeNoel";
var _popup;

function isOpenList() {
	return _popup != null && !_popup.closed;
}
function openList(swfID,userID) {
	//alert("openList "+swfID+", "+userID);
	_swfID = swfID;
	var params = "width=930,height=600,resizable=yes";
	var url = _listURL;
	if (userID > 0) url += "?user_id="+userID;
	_popup = window.open(url,_popupName,params);
}
function onOpenList() {
	//alert("onOpenList");
	var swf = document.getElementById(_swfID);
	swf.openListCallback();
}
function focusList() {
	if (_popup != null) _popup.focus();
}

function closeList() {
	if (_popup != null) _popup.close();
}
function onCloseList() {
	var swf = document.getElementById(_swfID);
	swf.closeListCallback();
	_popup = null;
}
