// JavaScript Document





function popupPano(theURL,winName,features) { 
  
  		if(! window.focus){  return; }
		var pano = window.open(theURL,winName,features);
		pano.focus();
		theURL.target = winName;
		
}
function popupCredit(theURL,winName,largeur,features) { 
 // window.open(theURL,winName,features);
  
  		if(! window.focus){  return; }
		var left = 'left='+(screen.width-largeur-100);
		var credit = window.open(theURL,winName,left+','+features);
		credit.focus();
		theURL.target = winName;
		
}

function show(n,nom){
	
	var id= nom+'_'+n;
	var d = document.getElementById(id);
	var img = document.images['switch_'+n];
	if(d.style.display !='none'){
		d.style.display='none';
		img.src = 'images/puceBleue2-open.gif';
		img.width = 4;
		img.height = 6;
	}else{
		d.style.display='block';
		img.src = 'images/puceBleue2.gif';
		img.width = 7;
		img.height = 4;
	}
}

