		function css_select (n) {
			switch(n){
				case 1:
					css_style = 'scrn_125';					
					break;
				case 2:
					css_style = 'scrn_160';					
					break;
				default:
					css_style = 'scrn_125';	
			}
				srn_type = n;
				switch_style (css_style);
		}	
		srn_type = 1;
		var cSize = Get_Cookie('cookieSize');
		if (cSize == null) {size = 0;} else {size = parseInt(cSize);}
		window.onload = function() {
			var n = 0;			
			if(screen.width / screen.height<1.35){n = 1;} else { n = 2;}
			css_select (n);
			var browHeight = 850;
			if (n == 2) { browHeight = 748;}
			var target = 1024;
			if (n == 2) { target = 900;}
			if (size == 0){size = Math.round((screen.height / target) * 100);}	
			var srnw = Math.round(size / 100 * 805);
			var srnh = Math.round(size / 100 * browHeight);
			window.resizeTo( srnw,srnh );					
			if (size !== 100) {document.body.style.fontSize = (size) + '%';}	
		}