	function reachUrl( o ) 
	{
		window.open(o.href, '');
		return false;
	}
	
	function resizeContainer(o)
	{
		var f = top.document.getElementById('siteContent');
		if(f)
		{
			var w, h;
			h=800;
			var test1 = o.body.scrollHeight;
			var test2 = o.body.offsetHeight;

			if (test1 > test2) // all but Explorer Mac
				h = o.body.scrollHeight;
			else
				h = o.body.offsetHeight;
			
			f.height = (h+200)+'px';
		}
	}

	window.addEvent('load', function() {
		resizeContainer(document);
	});
