	function manageReply(objID){
		divu = document.getElementById(objID);
		if(divu.style.display == "none"){
			divu.style.display = "block";
		}else{
			divu.style.display = "none";
		}
	}
	
	
	function createSponsorsArray(){
			if(s_current == (spons_img.length -1)){
				s_current = -1;
			}
			for(i=s_current+1; (i<spons_img.length) && (spons_current.length < s_max); i++){
				spons_current.push(i);
				s_current = i;
			}
			
	}
	
	function getSponsorsHTML(){
			rez = '';
			rez  = '<p class="sponsors">';
			for(i=0; i<spons_current.length; i++){
				rez += '<a href="http://';
				rez += spons_lnk[spons_current[i]];
				rez += '" target="_blank"><img src="'
				rez += spons_img[spons_current[i]];
				rez += '" width="64" height="44" alt="" /></a>';
			}
			rez += '</p>';
			return rez;
 	}
	
	
	function rollSponsors(){
		if(document.getElementById){
			cdiv = document.getElementById('c-sponsors');
			spons_current = Array();
			createSponsorsArray();
			cdiv.innerHTML = getSponsorsHTML();
		}
	}
			