window.iBrowserheight 	=	null
window.iContentHeight 	=	null
window.iBrowserWidth 	=	null


function fp_fixRightside (){
	if ( document.getElementById( 'content' ) ){
		setMessurements();
	}
}


function setMessurements (){
	if (document.all){
		window.iBrowserheight	=	document.body.clientHeight; 	
		window.iContentHeight	=	document.getElementById( 'content' ).offsetHeight	
		window.iBrowserWidth 	=	document.body.clientWidth; 
	}else{		
		window.iBrowserheight 	=	window.innerHeight; 	
		window.iContentHeight 	=	document.getElementById( 'content' ).offsetHeight		
		window.iBrowserWidth 	=	window.innerWidth; 		
	}
	return false	
}

oGod.mOnload( fp_fixRightside );
