function CambioVideoM(iVideo){
	document.getElementById('visor_videosm').innerHTML = "<BR><BR><BR><BR><BR><BR><BR><BR><font color=\"#ffffff\">Cargando vídeo... Espere, por favor</font>";
	var xmlhttp=false;
	try {
			xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
	} catch (e) {
			try {
					xmlhttp = new
					ActiveXObject('Microsoft.XMLHTTP');
		} catch (E) {
			xmlhttp = false;
					}
	}
	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
			xmlhttp = new XMLHttpRequest();
	}
	var archivo = '/musicalia/cambio-video.php?video=';
	xmlhttp.open('GET', archivo + iVideo, true); 
	xmlhttp.onreadystatechange=function() {
		if (xmlhttp.readyState==4) {
			var content = xmlhttp.responseText;
			if( content != '' ){
				document.getElementById('visor_videosm').innerHTML = content;
			}
		}
	}
	xmlhttp.send(null)
	return;
}
