function getgooglemap(url,dv){
var divmap=document.getElementById('dv'+dv)?document.getElementById('dv'+dv):null;
if(divmap==null)  {
var par=document.getElementById('bcontent');
divmap=document.createElement('div');
divmap.id='dv'+dv;
divmap.style.position='absolute';
divmap.style.zIndex='120';
divmap.style.width='768px';
divmap.style.height='550px';
divmap.style.background='#ededed';
divmap.style.margin='18px auto 18px auto';
divmap.style.left=parseInt(par.offsetLeft)+'px';
divmap.style.top=parseInt(par.offsetTop)+'px';
divmap.style.border='1px solid #ccc';
divmap.style.padding='0';
par.insertBefore(divmap,par.firstChild);
var clgmap=document.createElement('div');
clgmap.id='cl'+dv;
clgmap.style.width='768px';
clgmap.style.height='18px';
clgmap.style.margin='0';
clgmap.style.padding='2px 0 2px 0';
clgmap.style.fontFamily='Verdana, Arial, sans-serif';
clgmap.style.fontSize='10px';
clgmap.style.fontWeight='bold';
clgmap.style.textAlign='right';
clgmap.style.background='#ededed';
clgmap.style.borderBottom='1px solid #ddd';
clgmap.color='#000000';
clgmap.innerHTML='<a href="#" onclick="closemap('+"'"+dv+"'"+');return false;" title="fermer" style="color:#ff3300;">[fermer]&nbsp;</a>';
divmap.appendChild(clgmap);
var frgmap=document.createElement('iframe');
frgmap.id='fr'+dv;
frgmap.style.width='768px';
frgmap.style.height='520px';
frgmap.style.margin='0 auto 0 auto';
frgmap.style.padding='0';
frgmap.style.border='0';
frgmap.src=url;
divmap.appendChild(frgmap);
} else {
frgmap=document.getElementById('fr'+dv);
divmap=document.getElementById('dv'+dv);
frgmap.src=url;
divmap.style.display='block';
};
document.location.href='#bcontent';
};

function closemap(dv)
{
elm=document.getElementById('fr'+dv);
elm.src='vid.htm';
document.getElementById('dv'+dv).style.display='none';
};
