function crearPeliIPOD(contName,mov)  {
	x=document.getElementById(contName);
	if (document.all) {
		var myObject = document.createElement('object');
		x.appendChild(myObject);
		myObject.width = "200";
		myObject.height = "550";
		myObject.quality = "high";
		myObject.classid= "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"; 
		myObject.movie = mov;
		myObject.uiMode = "none" ;
	} else {
		x.innerHTML='<embed src="'+mov+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="200" height="550"></embed>';
	}
}
