var pop;
function popLeVigan (relUrl) {
	config='toolbar=no,location=no,directories=no,status=no,menubar=no,width=350,height=350,scrollbars=yes,resizable=yes';
        if( pop != null )
          pop.close();
	pop = window.open (relUrl,"pop",config);
}

function orc_unload(){
  if (opener) {
    if(opener.orc_popupClosed!=null)
      opener.orc_popupClosed();
  }
}

function orc_popupClosed(){
	pop=null;
}

 function infoVillage (x, y, el) {
 	var monCalc = document.getElementById(el);

 	monCalc.style.left = x;
 	monCalc.style.top = y;
 	monCalc.style.display='block';
 }
 
 function closeInfo(el) {
 	var monCalc = document.getElementById(el);
 	monCalc.style.display='none';
 
 }