var www_Popin = new PFW_Popin();

//--------------------------------------
// Fonction permettant d'afficher un popin contenant la reponse d'un objet AJAX
//--------------------------------------
function affiche_popin(urlBase, idPoint, lg)
{		
	var entete = 	'<div id="popinBSEF" style="background:#666;">';
	entete += 			'<div id="popinClose" style="width:20px; height:20px; background:#fff; font-family:Verdana; font-weight:bold; text-align:center; line-height:20px; cursor:pointer; float:right;" onclick="www_Popin.close();" >X</div>';
	entete +=			'<div id="popinContent" style="clear:both;"><iframe frameborder=0 height="450" width="630" src="' + urlBase + 'popinGMaps.php?idPoint=' + idPoint + '&lg=' + lg + '"></div>';
	entete += 		'</div>';

	var params= new Object();
	params["bg_opacity"]=0.4;
	params["width"]=630;
	params["height"]=470;
	params["bg_color"]="#000";
	params['contenu']= entete;  
	params["style"]= "select {visibility:visible !important;visibility: hidden;} ";
	www_Popin.open("www_Popin", params);
		
}

function affiche_popin2(urlBase,lg)
{		
	var entete = 	'<div id="popinBSEF" style="background:#fff;">';
	entete += 			'<div id="popinClose" style="width:20px; height:20px; background:#fff; font-family:Verdana; font-weight:bold; text-align:center; line-height:20px; cursor:pointer; float:right;" onclick="www_Popin.close();" >X</div>';
	entete +=			'<div id="popinContent" style="clear:both;"><iframe frameborder=0 height="450" width="630" src="' + urlBase + '"></div>';
	entete += 		'</div>';

	var params= new Object();
	params["bg_opacity"]=0.4;
	params["width"]=630;
	params["height"]=470;
	params["bg_color"]="#000";
	params['contenu']= entete;  
	params["style"]= "select {visibility:visible !important;visibility: hidden;} ";
	www_Popin.open("www_Popin", params);
		
}
