/*
 function showMovie(id){
	var cont= document.getElementById('moviecontainer');	
	cont.innerHTML = '<object width="425" height="350"> <param name="movie" value="http://www.youtube.com/v/'+id+'"> </param> <embed src="http://www.youtube.com/v/'+id+'" type="application/x-shockwave-flash" width="425" height="350"> </embed> </object>';	
	cont.style.visibility = "visible";
	new Effect.Opacity('moviecontainer', {from:1.0, to:0.5});
}

function hideMovie(){
	var cont= document.getElementById('moviecontainer');
	new Effect.Opacity('moviecontainer', {from:1.0, to:0.0});
	cont.style.visibility = "hidden";
}
*/

 function showMovie(id){
 	window.open('http://www.youtube.com/v/'+id,"systema-swiss.ch", "width=425,height=350,left=100,top=200");
}