function reachUrl( o ) 
{
	window.open(o.href, '');
	return false;
}

function resizeContainer(o)
{
	var x,y;
	var test1 = o.body.scrollHeight;
	var test2 = o.body.offsetHeight
	if (test1 > test2) // all but Explorer Mac
	{
		w = o.body.scrollWidth;
		h = o.body.scrollHeight;
	}
	else // Explorer Mac would also work in Explorer 6 Strict, Mozilla and Safari
	{
		w = o.body.offsetWidth;
		h = o.body.offsetHeight;
	}
	var f = top.document.getElementById('contentFrame');
	f.height=(h+10)+'px';
}