// Utilitaires de Gestion des Affichage des pages CLIENT
// Remplace custom.js pour les sites clients; Voir aussi 360/pano_clients.js

// Ouverture Popup 
function openpop(url_win,name,largeur,hauteur,param){

	//win_param=',scrollbars,resizable';
	win_top=(window.screen.height - hauteur)/2;
	win_left=(window.screen.width - largeur)/2;
	win_param='width='+largeur+',height='+hauteur+',top='+win_top+',left='+win_left+param;
	window.open(url_win,name,win_param); 

	
}



// Affichage du Boton panoramas
function viewer_360(client){
rep_view="360/";
img_360=rep_view+"360.gif";

	url_360=rep_view+"clients_360.htm?id="+client+"_"+0+"_0";
	win_360 = "openpop('"+url_360+"','pano_"+client+"',650,360,',status=yes,toolbar,scrollbars=no')";
	lnk_360='<a href="javascript://" onMouseUp="'+win_360+'"><img border=0 src="'+img_360+'"width="120" height="20"></a>';

	document.write(lnk_360);
}






