function PopUp(theURL,winName,features) {
	if(top.wdwChoix==null || top.wdwChoix.closed )
		top.wdwChoix = top.open(theURL,winName,features);
	else{
		top.wdwChoix.location.href=theURL;
		top.wdwChoix.focus();
	}
}