function Calc_width() {
	
var frameWidth = 1152;
var titl = document.getElementById('flash_rect');
	
if (self.innerWidth) 
    frameWidth = self.innerWidth; 
else if (document.documentElement && document.documentElement.clientWidth) 
    frameWidth = document.documentElement.clientWidth; 
else if (document.body) 
    frameWidth = document.body.clientWidth; 

if (frameWidth > 1020) {
	frameWidth = Math.round(frameWidth/2-155);
} else {
	frameWidth = Math.round(1020/2-155);
}

titl.style.cssText = 'position:absolute; top:19px; left:' + frameWidth + 'px;';

var browser_name = navigator.appName;

if (browser_name == "Netscape") {
frameWidth = frameWidth - 9;
titl.style.cssText = 'position:absolute; top:19px; left:' + frameWidth + 'px;';
}
}
