function setContentDimension() {
	
	var w = document.body.clientWidth;
	var h = document.body.clientHeight;
	var div = document.getElementById("divContent");
	
	if(is_full_flash) {
		if(w > content_w) w = "100%";
		else w = content_w + "px";
		
		if(h > content_h) h = "100%";
		else h = content_h + "px";
	} else {
		w = content_w + "px";
		h = content_h + "px";
	}
	
	div.style.width = w;
	div.style.height = h;
	
}
