// JavaScript Document

 var win33 = null;
var mywin = null;

function closeWin(){
if (win33 != null){if(!win33.closed) win33.close();}
if (mywin != null){if(!mywin.closed) mywin.close();}
}

function ppudetail(type,id,haut,larg,N_pop)//f_agrandir2
  {
  closeWin();
  switch (type)
{
  case 9:
  var vtext='detailpeint.php?obj_id='+id;
    break;
  default:
    var vtext='detailobj.php?obj_id='+id;
   break;
}
	 
    var vleft=screen.width/2-larg/2;
    var vtop=screen.height/2-haut/2;
//	N_pop = 1; //'Pictg<?php print rand(4,400000);?>';
     mywin=window.open(vtext,N_pop,"height="+haut+",width="+larg+",left="+vleft+",top="+vtop+",scrollbars=1,toolbar=0,location=0,resizable=0");
 mywin.focus();
  }
	  function ppuhoraire(larg,haut,N_pop)
  {
  closeWin();
      var vtext='horaires.php';
    var vleft=screen.width/2-larg/2;
    var vtop=screen.height/2-haut/2;

  //  N_pop = 'Pictg<?php print rand(4,400000);?>';
     win33=window.open(vtext,N_pop,"height="+haut+",width="+larg+",left="+vleft+",top="+vtop+",scrollbars=0,toolbar=0,location=0,resizable=0");
win33.focus();
 }