/**-----------------------------------------------------------------------------
*   Init actions
*/
window.onload = function()
{
	var g = document.getElementById('gold_content_td');
	var c = document.getElementById('content_div');
	
	if (g.offsetHeight > c.offsetHeight)
		c.style.height = g.offsetHeight+100+"px";	
}