function adjustHeight(){
    main_cont = document.getElementById('sshd'); 
    article_cont = document.getElementById('content-container'); 
    var footer_cont = document.getElementById('footer'); 
     
  	height = parseInt(document.body.offsetHeight);  
  	article_height = parseInt(article_cont.offsetHeight);
  	
  	if (article_height<(parseInt(document.body.clientHeight)-300)){
  	//alert(article_height);
  	if (article_height<260)
  		main_cont.style.height = parseInt(document.body.clientHeight)-91+"px";
  	else
  		main_cont.style.height = parseInt(document.body.clientHeight)+"px";
  	}
  	else {
  		footer_cont.style.marginTop = "0px";
  	}
  	
}