/*Fonction montre()*/
function montre() {
    document.getElementById("tdhidden").style.display ='block';

}

function switch_country(){
	var div=document.getElementById("morecountry")
	if(div.style.display == 'block'){
		div.style.display ='none';
		document.getElementById("desc_country").innerHTML ='Plus de Pays / More Countries';
		window.parent.document.getElementById("presta_frm").style.height="45px";
	}else{
		div.style.display ='block';	
		document.getElementById("desc_country").innerHTML ='Moins de Pays / Less Countries';
		window.parent.document.getElementById("presta_frm").style.height="155px";
	}

}

function popap(pays){
	window.open('http://www.allopass.com/show_accessv2.php4?CODE_PAYS='+pays+'&SITE_ID=135808&DOC_ID=376907&LG=fr','phone','toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,copyhistory=0,menuBar=0,width=300,height=340');
}
function oPop(nomPop,width,height,scrollable,resizable){
	if(typeof(nomPop)=="undefined")nomPop="pop";
	if(typeof(width)=="undefined")width=800;
	if(typeof(height)=="undefined")height=600;
	if(typeof(scrollable)=="undefined")scrollable="no";
	scrollable=(scrollable=="yes"?"yes":"no");
	if(typeof(resizable)=="undefined")resizable="no";
	resizable=(resizable=="yes"?"yes":"no");

	var top=(screen.height-height)/2;
	var left=(screen.width-width)/2;		

	window.open("about:blank",nomPop,"menubar=no, status=no, scrollbars="+scrollable+", menubar=no, resizable="+resizable+", width="+width+", height="+height+", left="+left+", top="+top);
}
