// JavaScript Document	function choix_ville(nomform, champ, fonction) {		var ville = document.forms[nomform].elements[champ].value;		window.open('static/choix_ville.php?nomform=' + nomform + '&champ=' + champ + "&fonction=" + fonction + "&recherche=" + ville, 'ville','toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, copyhistory=0, menuBar=0, width=480, height=250, top='+ (screen.height/2 - 125) + ', left=' + (screen.width/2 - 240), 'alwaysRaised');	}	function actu_loc() {		var urlc = "";		urlc += "&proche=O";		urlc += "&fr_ville=" + escape(document.forms["form"].elements["fr_ville"].value);		urlc += "&pays=" + escape(document.forms["form"].elements["pays"].value);		urlc += "&km=" + escape(document.forms["form"].elements["km"].value);		document.forms["form"].action = 'static.php?op=musiqueIndex.php&npds=-1' + urlc;		document.forms["form"].submit();	}	function change_pays() {		var pays = document.form.pays.options[document.form.pays.options.selectedIndex].value;		var f = document.getElementById("aff_ville");		var g = document.getElementById("ville_fr");		g.innerHTML = document.form.fr_ville.value;		if (pays == "France") {			f.style.display = "inline";			g.style.display = "inline";		} else {			f.style.display = "none";			g.style.display = "none";			document.form.fr_ville.value = "";		}	}
