function showRightFigure(){
	var x = document.getElementById("testwidth").offsetWidth;			
	/*if (self.innerHeight){ // all except Explorer
	  x = self.innerWidth - 22;
	}
	else if (document.documentElement && document.documentElement.clientWidth){ // Explorer 6 Strict Mode
	  x = document.documentElement.clientWidth;
	}
	else if (document.body){ // other Explorers
	  x = document.body.clientWidth;
	}*/
	
	contentwidth = 662;
	width = Math.min(Math.floor((x - contentwidth) / 2) - 1, 203);
	if(width > 0){
		document.getElementById("rightfigure").style.left = contentwidth + "px";
		document.getElementById("rightfigure").style.top = "42px";
		document.getElementById("rightfigure").style.width = width + "px";
		document.getElementById("rightfigure").style.height = "983px";
		document.getElementById("rightfigure").style.visibility = "visible";
		//alert(document.getElementById("testwidth").offsetWidth + " " + x);
	}
}
window.onresize = showRightFigure;
