function test(posicion,senderid,sendername){
		
	
	if(posicion > 27) posicion = posicion%28;
	
		
	containertoload = (posicion)/4;
	container_profile = 'div'+parseInt(containertoload+1);
	if($(container_profile)){
		$(container_profile).setStyle('display','block');
	}
	
	
	
	for(i=1;i<=7;i++){
		temp_counter = 'div'+parseInt(i);
		if(i != parseInt(containertoload+1)&& $(temp_counter).getStyle('display','block')){			
			$(temp_counter).setStyle('display','none');
		}
	}
	
	contenedor = document.getElementById(container_profile);
	
	//var slider1 = new Fx.Slide(temp_counter);
	//slider1.slideIn();
	
	
	ajax=nuevoAjax();
	//ajax.open("GET", "./sender.php?sender=PrivatMoni",true);
	ajax.open("GET", "./senderhomepage.php?sid="+senderid+"&sname="+sendername,true);
	ajax.onreadystatechange=function() {
		if (ajax.readyState==4) {
			
			contenedor.innerHTML = ajax.responseText
		}
	}
	ajax.send(null)
		
}

function testhide(posicion){
	
	containertoload = (posicion)/4;
	container_profile = 'div'+parseInt(containertoload+1);
	$(container_profile).setStyle('display','none');
	

}

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;
}