function setMovieHeight(_id , _height)
{	
	var objs = document.getElementsByName( _id ); 

	for(var i=0;i<objs.length;i++)
	{
		var obj = objs[i];
		obj.style.height=_height+"px"; 
	}
}
