start = location.href.lastIndexOf("?CC=")+4
var CountryCode = location.href.substring(start,start+2)
start = location.href.lastIndexOf("&LC=")+4
var LangCode = location.href.substring(start,start+2)
if (CountryCode=='p:'||LangCode=='p:')
	alert ('Country Code or Lang Code is missing.\nThe top panel cant be linked properly.')
	
function BodyInit() {
	if (document.all) {
		if (document.getElementById('TBJSRightContent'))
			var FrameHeight=document.getElementById('TBCopyRight').document.body.scrollHeight
	}		
	else
		var FrameHeight=parent.frames[0].document.height
		
	var CopyRightTop=document.getElementById('TBCopyRight').offsetTop-117
	
	if (CopyRightTop>FrameHeight) 
		document.getElementById('TBJSRightContent').style.height=CopyRightTop+'px'
	else {
		document.getElementById('TBJSRightContent').style.height=FrameHeight+'px'
		document.getElementById('TBCopyRight').style.top=FrameHeight+117+'px'
	}	
}

