// JavaScript Document
function pollContent(id){
if(document.getElementById(id))
initLightbox();
else
setTimeout("pollContent('"+id+"')", 1000)
}
function pJ(){
pollid = 'Poll1';
if(!document.getElementById(pollid)){
pollContent(pollid);
}
}
 
function NuevoAjax() {
     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();
        }
        return xmlhttp;
}

function vmes(idmuestra, idartista)
{
	
 		_objetus=NuevoAjax();

		target = 'muestra_artista';

        _URL_ = 'eje_actual_div_muestra_artista.php?idmuestra=' + idmuestra + '&idartista=' + idartista;
		
        cargando = 'eje_actual_div_muestra_cargando.php';

        _objetus.open("GET",_URL_,true);
 
        _objetus.onreadystatechange=function() {
 
                if (_objetus.readyState==1)
                {
                        document.getElementById(target).style.display = "";

						var cargando = "<table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td width='765' align='left' valign='top' class='ejeactual_muestra_artista_nombre'>Cargando contenido...</td></tr><tr><td height='20'><img src='../includes/ajaxdiv/ajax-loader.gif' width='31' height='31' /></td></tr></table>";

                        document.getElementById(target).innerHTML = cargando ;
 
                }
 
                else if (_objetus.readyState==4)
                {
                        if(_objetus.status==200)
                        {
					    document.getElementById(target).style.display = "";
                        document.getElementById(target).innerHTML = _objetus.responseText;

                        }
                }
 
        }
        _objetus.send(null);

}

function vmen(idmuestra, idartista)
{
	
 		_objetus=NuevoAjax();

		target = 'muestra_artista';

        _URL_ = 'eje_actual_div_muestra_artista.php?idmuestra=' + idmuestra + '&idartista=' + idartista;
		
        cargando = 'eje_actual_div_muestra_cargando.php';

        _objetus.open("GET",_URL_,true);
 
        _objetus.onreadystatechange=function() {
 
                if (_objetus.readyState==1)
                {
                        document.getElementById(target).style.display = "";

						var cargando = "<table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td width='765' align='left' valign='top' class='ejeactual_muestra_artista_nombre'>Loading content...</td></tr><tr><td height='20'><img src='../includes/ajaxdiv/ajax-loader.gif' width='31' height='31' /></td></tr></table>";

                        document.getElementById(target).innerHTML = cargando ;
 
                }
 
                else if (_objetus.readyState==4)
                {
                        if(_objetus.status==200)
                        {
					    document.getElementById(target).style.display = "";
                        document.getElementById(target).innerHTML = _objetus.responseText;

                        }
                }
 
        }
        _objetus.send(null);

}