';
var c="";
for(var v in tab_liste_city[''+p+'']){
t=tab_liste_city[''+p+''][v].split(";");
if(t[0]=="" && t[1]==""){c+='
';}
else{c+='
';}
}
document.getElementById('res_city').innerHTML='
';
}
function aff_div(n,m){
nav = navigator.appName;
document.location='?c=398208744943&base=geoloc4&tab='+n+'&month='+m;
}
function affich_city(k){
if(document.getElementById('ci_'+k).style.display=="none"){
document.getElementById('ci_'+k).style.display="table-row";
}
else{
document.getElementById('ci_'+k).style.display="none";
}
}
function aff_city(){
var p=document.getElementById('select_liste_city').options[document.getElementById('select_liste_city').selectedIndex].value;
var t=p.split(";");
zoom_city(t[0],t[1],t[2]);
}
function zoom_city(lat,lon,iso){
sc=document.getElementById('res_pays').scrollTop;
if(iso!="" && iso!=undefined){
document.location='?c=398208744943&base=geoloc4&tab=&month=&lat='+lat+'&lon='+lon+'&iso='+iso+'&sc='+sc+'#zoomcity';
}
}
function getScrollXY() {
var scrOfX = 0, scrOfY = 0;
if( typeof( window.pageYOffset ) == 'number' ) {
//Netscape compliant
scrOfY = window.pageYOffset;
scrOfX = window.pageXOffset;
} else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {
//DOM compliant
scrOfY = document.body.scrollTop;
scrOfX = document.body.scrollLeft;
} else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
//IE6 standards compliant mode
scrOfY = document.documentElement.scrollTop;
scrOfX = document.documentElement.scrollLeft;
}
return [ scrOfX, scrOfY ];
}