I've got this code, working only in firefox.
<script type="text/javascript">
function setVideo(url){
url = url.replace("watch?v=","v/","i");
var movie = document.getElementById('movie');
movie.setAttribute('src',url+"&hl=en&fs=1&");
var param = document.getElementById('paramm');
param.setAttribute('value',url+"&hl=en&fs=1&");
}
</script>
<object width="425" height="344">
<param name="movie" id="paramm"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed id="movie" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344" src=""></embed>
</object>
<a href="#" onclick="setVideo('http://www.youtube.com/watch?v=3h1qQaRxY40')">example</a>
PLEASE help, I have no idea, it's such a simple script, why is it not working?? thanks