Ok, il problema è che mi serve interagire con quella variabile all'interno del file .js
Vale lo stesso discorso?
Praticamente il file .js è così:
codice:
function populateSWF(){
	var shtml = "<object classid=\"clsid27CDB6E-AE6D-11cf-96B8-444553540000\"";
	shtml += " codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0\"";
	shtml += "  width=\"238\" height=\"514\" id=\"spiaggeecoste\" align=\"\">";
	shtml += " <param name=movie value=\"spiagge e coste.swf\">";
	shtml += " <param name=quality value=high>";
	shtml += " <param name=bgcolor value=#FFFFFF>";
	shtml += " <embed src=\"spiagge e coste.swf\" quality=high bgcolor=#FFFFFF  width=\"238\" height=\"514\" name=\"simple_movie\" align=\"\"";
	shtml += "  type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed>";
	shtml += "     </object>"

	var md = document;
	var d = md.getElementById("swfcont");
	d.innerHTML = shtml;
}

window.onload = populateSWF;
nel richiamo del file spiagge e coste.swf dovrei passare una variabile e quindi far diventare spiagge e coste.swf?valore=varibiale


Così cosa mi dici?
Come dovrei fare?