function openfull(theURL,winName,features,w,h) { //v2.0
	newwin=window.open(theURL,winName,features,w,h);
	newwin.moveTo(0,0);
	newwin.resizeTo(screen.availWidth,screen.availHeight)
	newwin.focus()
}

function showhide(id){
	if (document.getElementById){
		obj = document.getElementById(id);
		//alert(obj);
		if (obj.style.display == "none"){
			obj.style.display = "";
		} else {
			obj.style.display = "none";
		}
	}
} 

function affichage_popup(){
window.open('http://www.syndicat-des-taxis-marseillais.com/pagepermis.php','pagepermis','menubar=no, status=no, scrollbars=yes, menubar=no, width=1000, height=1000')
}
