  function goto(s,temp){  

	for(var i = 1; i<= temp; i++){
	   if(i == s){      
	     document.getElementById("div_"+i).className ='ss';
	     setCookie('ss',s,1);
	   }else{
	     document.getElementById("div_"+i).className ='list';
	   }
	}
}

 
 function getValue(){
  try{
	    
		var value = getCookie('ss');
		//alert(value);
		var value1 = getCookie('xx');
		if(value != ''){
			document.getElementById("div_"+value).className ='ss';
                    document.getElementById("row_"+value).className='bg' ;
		}
		if(value1 != ''){
			document.getElementById("mydiv"+sa).style.backgroundColor='#336699';
		}
	}catch(e){
	  
	 }
  }
  
  
  function savetocookie(index){
  setCookie('ss',index,1);
  }
  
  
  function openSen(url){
		parent.location.href = url;
	}  
 