//fonction qui vérifie la date sur le poste
var ladate=new Date();

var noel="";
if (ladate.getYear() < 10) {noel+="0";}
noel+=ladate.getYear() + ":"
if (ladate.getMonth() < 10) {noel+="0";}
noel+=ladate.getMonth() + 1 + ":"
if (ladate.getDate() < 10) {noel+="0";}
noel+=ladate.getDate()

// si la date de l'ordinateur est entre les 2 metionnées ci-bas, un popup ouvres
function redirPopupNoel(strCodeClient, strCodeLangue) {

	var h = 670;
	var w = 700;
	
	var winl = ((screen.width - w) / 2);
	var wint = ((screen.height - h) / 2) -25;
	
	if ( (noel>="2005:12:19") && (noel<"2006:00:04") ){ 
		window.open ('http://groupebdm.com/carte/cartedenoel.asp?strCodeClient=' + strCodeClient + '&strCodeLangue=' + strCodeLangue, 'newWin', 'resizable=yes, scrollbars=yes,status=no,width=' + w + ',height=' + h + ',top=' + wint + ',left=' + winl)

	}
}