<!--

function equalize() {

var ss = document.getElementById('ssad');
var s = document.getElementById('sad');

   ss.style.display = 'none';
   s.style.display = 'none';

var lefth = document.getElementById('main_col').offsetHeight;
var righth = document.getElementById('right_col').offsetHeight;

if(lefth-righth > 269) {
   ss.style.display = 'block';
   s.style.display = 'none';
   }

if(lefth-righth > 319) {
   ss.style.display = 'none';
   s.style.display = 'block';
   }

if(lefth-righth > 588) {
   ss.style.display = 'block';
   s.style.display = 'block';
   }

 }
//-->
