// JavaScript Document
	  
	  /* Scripted by Alexander Tan
	     Created on 21 Jul 2006 at 8:57pm UK time.
   
	     This script will get the height of the content column.
	     It will then make the right column equals to the content column. */
   
  	  var contentheight = document.getElementById('content_body').offsetHeight;
  	  var rightheight = document.getElementById('right_col').offsetHeight;
	  
	  if(contentheight > rightheight)
	  {
		  document.getElementById('right_col').style.height = (contentheight - 12) + "px";
		  document.getElementById('others').style.height = (contentheight - (document.getElementById('message').offsetHeight + document.getElementById('photo').offsetHeight + document.getElementById('links').offsetHeight) - 58) + "px"; 
  		  document.getElementById('only_others').style.height = (contentheight - document.getElementById('message_s').offsetHeight) + "px";

	  }
	  else
	  {
		  document.getElementById('content_body').style.height = rightheight + "px";
	  }