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 cargacategoria(cod_categoria, pag){
       
	   c = document.getElementById('videos_categorias');
   //alert(precio);
       //cantidad=document.getElemetById("cantidad").value;
	   
       //cantidad=document.form1.cantidad.value;
       //cond=document.enviar_email.condiciones.value;
       //men=document.enviar_email.mensaje.value;
   	//alert(cond);
		
       ajax=nuevoAjax();
      
       ajax.open("POST", "./includes/categ.php",true);
       ajax.onreadystatechange=function() {
		  if (ajax.readyState==1) {
        
		c.innerHTML = '<div style="text-align:center;width:545px;height:300px;color:#000000;left;">Cargando...<br><img src="ajax-loader.gif"/></div>'; 
		   }
       if (ajax.readyState==4) {
       c.innerHTML = ajax.responseText
	   if(cod_categoria==10){
	   
	   document.getElementById("categoria"+cod_categoria).className="botonesqueBlanco1";
	   }else if(cod_categoria==9){
		   document.getElementById("categoria"+cod_categoria).className="botonesqueBlanco2";
	   }else if(cod_categoria==8){
		   document.getElementById("categoria"+cod_categoria).className="botonesqueBlanco3";
	   }else{
		    document.getElementById("categoria"+cod_categoria).className="botonesqueBlanco";
	   }
	if(cod_categoria<=7){
		document.getElementById("categoria9").className="botonesqueVerde";
		document.getElementById("categoria10").className="botonesqueAzul";
		document.getElementById("categoria8").className="botonesqueNaranja";
	}else{
		if(cod_categoria==9){
		document.getElementById("categoria10").className="botonesqueAzul";
		document.getElementById("categoria8").className="botonesqueNaranja";
		}
			
		}
		if(cod_categoria==10){
			document.getElementById("categoria9").className="botonesqueVerde";
			document.getElementById("categoria8").className="botonesqueNaranja";
		}
		if(cod_categoria==8){
			document.getElementById("categoria9").className="botonesqueVerde";
			document.getElementById("categoria10").className="botonesqueAzul";
		}
		if(cod_categoria==11){
			document.getElementById("categoria9").className="botonesqueVerde";
			document.getElementById("categoria10").className="botonesqueAzul";
			document.getElementById("categoria8").className="botonesqueNaranja";
		}
	i=1;
	while(i<=7){
		if(cod_categoria!=i){
	document.getElementById("categoria"+i).className="botonesqueRojo";
	
		}
		i++;
	}
	if(cod_categoria!=11){
	document.getElementById("categoria11").className="botonesqueRojo";
	
		}
       }
       //borrarCampos()
       }
       ajax.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
       //ajax.send("destinatario="+dest+"&emisor="+emis+"&mensaje="+men)
	   ajax.send("&cod_cat="+cod_categoria+"&pag="+pag);
}
     function subir(){
          if( document.documentElement.scrollTop < 10 ){
               window.scrollTo(0,0);
          }else{
               window.scrollBy(0,-10);
               setTimeout("subir()",10);
          }
     }
	 
function cargavideo(cod_video){
       
	   c = document.getElementById('tituvideo');
   //alert(precio);
       //cantidad=document.getElemetById("cantidad").value;
	   
       //cantidad=document.form1.cantidad.value;
       //cond=document.enviar_email.condiciones.value;
       //men=document.enviar_email.mensaje.value;
   	//alert(cond);
       ajax=nuevoAjax();
       //c.innerHTML = '<p style="text-align:center;"><img src="./lb/ajax-loader.gif"/></p>'; 
       ajax.open("GET", "./includes/nom_video.php?video="+cod_video,true);
       ajax.onreadystatechange=function() {
		   if (ajax.readyState==1) {
        
		c.innerHTML = '<p style="text-align:center;width:500px;height:300px;"><img src="ajax-loader.gif"/></p>'; 
		   }
       if (ajax.readyState==4) {
		subir();
		c.innerHTML = ajax.responseText;
		//alert("hola");
       var s1 = new SWFObject("./player/player.swf","playlist", 550, 320,"7","#000000");
        s1.addParam('allowscriptaccess','always');
        s1.addParam('allowfullscreen','true');
        s1.addParam('wmode', 'opaque');
        s1.addVariable('autostart','false');
        s1.addVariable('repeat','list');
        s1.addVariable('file','playlist2.php?id='+cod_video);
        s1.addVariable('backcolor','FFFFFF');
        s1.addVariable('frontcolor','FF0000');
        s1.addVariable('lightcolor ','000000');
        s1.write('container2');
		
       }
       //borrarCampos()
       }
       ajax.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
       //ajax.send("destinatario="+dest+"&emisor="+emis+"&mensaje="+men)
	   ajax.send("&video="+cod_video);
}

