var xmlhttpClas;
var categories_id_selected = null;
var module_id_selected = null;

function createAjaxClas()
{ 
	try 
	{ 
		xmlhttpClas=new ActiveXObject("Msxml2.XMLHTTP"); 
	}
	catch(e)
	{ 
		try
		{ 
			xmlhttpClas=new ActiveXObject("Microsoft.XMLHTTP"); 
		} 
		catch(E) { xmlhttp=false; }
	}
	if (!xmlhttpClas && typeof XMLHttpRequest!='undefined') { xmlhttpClas = new XMLHttpRequest(); } 
}

function loadImagesModule(module)
{
	 module_id_selected = module;	
	
		var images_module_div = document.getElementById("images_module_content_div");
		var images_module_footer = document.getElementById("images_module_content_div_footer");

  var layerHeight = 100;
		if (images_module_div != null)
    layerHeight = (images_module_footer.offsetTop - images_module_div.offsetTop) - 10;

		if (navigator.appName.indexOf("Explorer") != -1)
		{	
		   layerHeight = layerHeight -30;
					document.getElementById("transSmallNews").style.width = 308;
					document.getElementById("transSmallNews").style.height =  layerHeight;		
					document.getElementById("transSmallNewsText").style.width = 308;
					document.getElementById("transSmallNewsText").style.height = layerHeight;		

					var message="<br><br><table border='0' cellpadding='0' cellspacing='0'><tr><td valign='middle' style='height:"+layerHeight+"px;' align='center'><img src='http://www.futbolsalanacional.es/images/ajax-loader.gif' alt='Enviando'><br/><br/><span class='text_news'><b>Cargando datos. Por favor espere...</b></span></td></tr></table>";
							
					document.getElementById("transSmallNewsText").innerHTML=message;		
		
		}
		else
		{
			  		var message="<br><br><br><br><br><br><table border='0' cellpadding='0' cellspacing='0'><tr><td valign='middle' style='height:"+layerHeight+"px;' align='center'><img src='http://www.futbolsalanacional.es/images/ajax-loader.gif' alt='Enviando'><br/><br/><span class='text_news'><b>Cargando datos. Por favor espere...</b></span></td></tr></table>";
				
   		document.getElementById("transSmallNewsText").innerHTML=message;		
					
					document.getElementById("transSmallNews").style.width = 305;
					document.getElementById("transSmallNews").style.height =  layerHeight;		
					document.getElementById("transSmallNewsText").style.width = 305;
					document.getElementById("transSmallNewsText").style.height = layerHeight;						
		}
			
	
 	if (images_module_div != null)
		{
				document.getElementById("transSmallNews").style.top = images_module_div.style.top;
				document.getElementById("transSmallNews").style.left = images_module_div.style.left;		
				document.getElementById("transSmallNewsText").style.top = images_module_div.style.top;
				document.getElementById("transSmallNewsText").style.left = images_module_div.style.left;	
		}
		
		document.getElementById("transSmallNews").style.display="block";		
				
		var url= './ajax.php?action=load_images_module&module='+module_id_selected;
		
		createAjaxClas();
		xmlhttpClas.open("GET", url+'', true);
		xmlhttpClas.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
		xmlhttpClas.onreadystatechange=function()
		{
			if (xmlhttpClas.readyState==4)
			{				
						document.getElementById("transSmallNews").style.display="none";
						sleep(1000);
						document.getElementById("images_module").innerHTML=xmlhttpClas.responseText;																			
			}
		}
		xmlhttpClas.send(null);	 
	
}
function loadNewsModule(module)
{
	 module_id_selected = module;	
	
		var news_module_div = document.getElementById("news_module_content_div");
		var news_module_footer = document.getElementById("news_module_content_div_footer");

  var layerHeight = 100;
		if (news_module_div != null)
    layerHeight = (news_module_footer.offsetTop - news_module_div.offsetTop) - 10;
				  
		//var message="<table border='0' cellpadding='0' cellspacing='0'><tr><td valign='middle' style='height:"+layerHeight+"px;' align='center'><img src='http://www.futbolsalanacional.es/images/ajax-loader.gif' alt='Enviando'><br/><br/><span class='text_news'><b>Cargando Comentarios. Por favor espere.</b></span></td></tr></table>";
		
		
		if (navigator.appName.indexOf("Explorer") != -1)
		{	
		   layerHeight = layerHeight -30;
					document.getElementById("transSmallNews").style.width = 308;
					document.getElementById("transSmallNews").style.height =  layerHeight;		
					document.getElementById("transSmallNewsText").style.width = 308;
					document.getElementById("transSmallNewsText").style.height = layerHeight;		

					var message="<br><br><table border='0' cellpadding='0' cellspacing='0'><tr><td valign='middle' style='height:"+layerHeight+"px;' align='center'><img src='http://www.futbolsalanacional.es/images/ajax-loader.gif' alt='Enviando'><br/><br/><span class='text_news'><b>Cargando datos. Por favor espere...</b></span></td></tr></table>";
							
					document.getElementById("transSmallNewsText").innerHTML=message;		
		
		}
		else
		{
			  		var message="<br><br><br><br><br><br><table border='0' cellpadding='0' cellspacing='0'><tr><td valign='middle' style='height:"+layerHeight+"px;' align='center'><img src='http://www.futbolsalanacional.es/images/ajax-loader.gif' alt='Enviando'><br/><br/><span class='text_news'><b>Cargando datos. Por favor espere...</b></span></td></tr></table>";
				
   		document.getElementById("transSmallNewsText").innerHTML=message;		
					
					document.getElementById("transSmallNews").style.width = 305;
					document.getElementById("transSmallNews").style.height =  layerHeight;		
					document.getElementById("transSmallNewsText").style.width = 305;
					document.getElementById("transSmallNewsText").style.height = layerHeight;						
		}
			
	
 	if (news_module_div != null)
		{
				document.getElementById("transSmallNews").style.top = news_module_div.style.top;
				document.getElementById("transSmallNews").style.left = news_module_div.style.left;		
				document.getElementById("transSmallNewsText").style.top = news_module_div.style.top;
				document.getElementById("transSmallNewsText").style.left = news_module_div.style.left;	
		}
		
		document.getElementById("transSmallNews").style.display="block";		
				
		var url= './ajax.php?action=load_news_module&module='+module_id_selected;
		
		createAjaxClas();
		xmlhttpClas.open("GET", url+'', true);
		xmlhttpClas.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
		xmlhttpClas.onreadystatechange=function()
		{
			if (xmlhttpClas.readyState==4)
			{				
						document.getElementById("transSmallNews").style.display="none";
						sleep(1000);
						document.getElementById("news_module").innerHTML=xmlhttpClas.responseText;																			
			}
		}
		xmlhttpClas.send(null);	 
	
}

function loadClasification(categories_id)
{
	 categories_id_selected = categories_id;	
	
		var clasification_div = document.getElementById("clasification_div");
		var clasification_footer = document.getElementById("clasification_footer");

  var layerHeight = 100;
		if (clasification_div != null)
    layerHeight = (clasification_footer.offsetTop - clasification_div.offsetTop) - 10;
				  
		
		if (navigator.appName.indexOf("Explorer") != -1)
		{	
					document.getElementById("transSmallComments").style.width = 305;
					document.getElementById("transSmallComments").style.height =  layerHeight;		
					document.getElementById("transSmallCommentsText").style.width = 305;
					document.getElementById("transSmallCommentsText").style.height = layerHeight;			
					var message="<br><br><table border='0' cellpadding='0' cellspacing='0'><tr><td valign='middle' style='height:"+layerHeight+"px;' align='center'><img src='http://www.futbolsalanacional.es/images/ajax-loader.gif' alt='Enviando'><br/><br/><span class='text_news'><b>Cargando datos. Por favor espere...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></span></td></tr></table>";
							
					document.getElementById("transSmallCommentsText").innerHTML=message;		
		
		}
		else
		{
			  		var message="<br><br><br><br><br><br><table border='0' cellpadding='0' cellspacing='0' style='text-align:center;'><tr><td valign='middle' style='height:"+layerHeight+"px;' align='center'><img src='http://www.futbolsalanacional.es/images/ajax-loader.gif' alt='Enviando'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/><br/><span class='text_news'><b>Cargando datos. Por favor espere...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></span></td></tr></table>";
				
   		document.getElementById("transSmallCommentsText").innerHTML=message;		
					
					document.getElementById("transSmallComments").style.width = 305;
					document.getElementById("transSmallComments").style.height =  layerHeight;		
					document.getElementById("transSmallCommentsText").style.width = 305;
					document.getElementById("transSmallCommentsText").style.height = layerHeight;						
		}
			
	
 	if (clasification_div != null)
		{
				document.getElementById("transSmallComments").style.top = clasification_div.style.top;
				document.getElementById("transSmallComments").style.left = clasification_div.style.left;		
				document.getElementById("transSmallCommentsText").style.top = clasification_div.style.top;
				document.getElementById("transSmallCommentsText").style.left = clasification_div.style.left;	
		}
		
		document.getElementById("transSmallComments").style.display="block";		
		
		
		var url= './ajax.php?action=load_clasification&categories_id='+categories_id_selected;
		
		createAjaxClas();
		xmlhttpClas.open("GET", url+'', true);
		xmlhttpClas.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
		xmlhttpClas.onreadystatechange=function()
		{
			if (xmlhttpClas.readyState==4)
			{				
						document.getElementById("transSmallComments").style.display="none";						
						//sleep(1000);
						document.getElementById("clasification_complete_div").innerHTML=xmlhttpClas.responseText;																			
			}
		}
		xmlhttpClas.send(null);	 
	
}

function loadClasificationPlata(categories_id)
{
	 categories_id_selected = categories_id;	
	
		var clasification_div = document.getElementById("clasification_div");
		var clasification_footer = document.getElementById("clasification_footer");

  var layerHeight = 100;
		if (clasification_div != null)
    layerHeight = (clasification_footer.offsetTop - clasification_div.offsetTop) - 10;
				  
		
		if (navigator.appName.indexOf("Explorer") != -1)
		{	
					document.getElementById("transSmallComments").style.width = 305;
					document.getElementById("transSmallComments").style.height =  layerHeight;		
					document.getElementById("transSmallCommentsText").style.width = 305;
					document.getElementById("transSmallCommentsText").style.height = layerHeight;			
					var message="<br><br><table border='0' cellpadding='0' cellspacing='0'><tr><td valign='middle' style='height:"+layerHeight+"px;' align='center'><img src='http://www.futbolsalanacional.es/images/ajax-loader.gif' alt='Enviando'><br/><br/><span class='text_news'><b>Cargando datos. Por favor espere...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></span></td></tr></table>";
							
					document.getElementById("transSmallCommentsText").innerHTML=message;		
		
		}
		else
		{
			  		var message="<br><br><br><br><br><br><table border='0' cellpadding='0' cellspacing='0' style='text-align:center;'><tr><td valign='middle' style='height:"+layerHeight+"px;' align='center'><img src='http://www.futbolsalanacional.es/images/ajax-loader.gif' alt='Enviando'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/><br/><span class='text_news'><b>Cargando datos. Por favor espere...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></span></td></tr></table>";
				
   		document.getElementById("transSmallCommentsText").innerHTML=message;		
					
					document.getElementById("transSmallComments").style.width = 305;
					document.getElementById("transSmallComments").style.height =  layerHeight;		
					document.getElementById("transSmallCommentsText").style.width = 305;
					document.getElementById("transSmallCommentsText").style.height = layerHeight;						
		}
			
	
 	if (clasification_div != null)
		{
				document.getElementById("transSmallComments").style.top = clasification_div.style.top;
				document.getElementById("transSmallComments").style.left = clasification_div.style.left;		
				document.getElementById("transSmallCommentsText").style.top = clasification_div.style.top;
				document.getElementById("transSmallCommentsText").style.left = clasification_div.style.left;	
		}
		
		document.getElementById("transSmallComments").style.display="block";		
		
		
		var url= './ajax.php?action=load_clasification_plata&categories_id='+categories_id_selected;
		
		createAjaxClas();
		xmlhttpClas.open("GET", url+'', true);
		xmlhttpClas.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
		xmlhttpClas.onreadystatechange=function()
		{
			if (xmlhttpClas.readyState==4)
			{				
						document.getElementById("transSmallComments").style.display="none";						
						//sleep(1000);
						document.getElementById("clasification_complete_div").innerHTML=xmlhttpClas.responseText;																			
			}
		}
		xmlhttpClas.send(null);	 
	
}

