var newwin;
function openwinFR(IDannonce)
{
	//Ouvre une nouvelle fenêtre affichant le détail de l'annonce IDannonce pour le site francais
	newwin = window.open("../Offres/DetailOffres.asp?id="+IDannonce, "windetail", "location=no,directories=no, status=no,toolbar=no,resizable=yes,scrollbars=yes,width=700,height=500,top=0,left=0");
	newwin.focus() ;
}

function openwinUK(IDannonce)
{
	//Ouvre une nouvelle fenêtre affichant le détail de l'annonce IDannonce pour le site en anglais
	newwin = window.open("../Offres/DetailOffres.asp?id="+IDannonce, "windetail", "location=no,directories=no, status=no,toolbar=no,resizable=yes,scrollbars=yes,width=700,height=500,top=0,left=0");
	newwin.focus() ;
}

function closeWin(){
  var fenetre;  
  fenetre=window.opener;
  fenetre.focus();
  window.close();
}