
function affiche_bon2(bon,nom) {
var pop2=window.open('http://www.bons2reduction.com/voir-site.php?code='+ bon,''+nom+'','width=1024,height=800,left=auto,top=auto,toolbar=yes,location=yes,directories=yes,status=yes,scrollbars=yes,resizable=yes,copyhistory=yes,menuBar=yes');
pop2.focus();
}


//window.onload=montre;


function montre(id,id2) {
var d = document.getElementById(id);
var v = document.getElementById(id2);
  
if (d)
{
            d.style.display='block';
			v.style.display='none';
			
			}
}

  for (var i = 1; i<=30; i++)
            {
        if (document.getElementById('code'+i))
                          {
                                  document.getElementById('code'+i).style.display='none';}
                }


var mytimer;
	var increment = 1;
	
	function clic(){
	
		mytimer = setInterval(windowfocus, 2000);
	}
	
	function windowfocus(){
		if (increment > 2){
			clearInterval(mytimer);
		}
		window.focus();
		increment++;
	}
