// JavaScript Document
function SizeLoadDoc() {

	
	
	if (browser.isIE5up == true ){
		wd = document.body.offsetWidth;
		hit =  document.body.offsetHeight;
		diff = document.body.offsetWidth - document.body.clientWidth
		window.resizeTo(775 + diff,screen.height - 50)
		self.moveTo(screen.width /2- (790 + diff)/2,15)
		document.getElementById("content").style.height = document.body.clientHeight - 160;
		if (browser.isMac == true ){
			window.resizeTo(825 ,screen.height - 50);
			self.moveTo(screen.width /2- (800 )/2,0);
			window.innerwidth = 775;
			}
	}else{
		if (browser.isMac == true ){
			window.resizeTo(800 ,screen.height - 50);
			self.moveTo(screen.width /2- (775 )/2,0);
			window.innerwidth = 775;
		}else{
			window.resizeTo(795 ,screen.height - 50);
			self.moveTo(screen.width /2- (775 )/2,15);
			window.innerwidth = 775;	
		}
	document.getElementById("content").style.height = document.body.clientHeight - 160;
	}
	
		
}