
/* */
/*
	 Design scripts
*/

		function sizewindow(){
			if (ContentEdit) return false;
			var winHeight;
			if(document.all){
				winHeight = document.body.clientHeight-23;
				//document.styleSheets(0).addRule("DIV#container", "{height:"+winHeight+"px;}");
			}else{			
				var winHeight = document.getElementById('bottom').offsetTop;
				var layoutElement = document.getElementById('content');
				layoutElement.style.height = (winHeight) + 'px';			
			}
		}
		function sizewindowfront(){
			if (ContentEdit) return false;
			var winHeight;
			if(document.all){
				winHeight = document.body.clientHeight-23;
				//document.styleSheets(0).addRule("DIV#container", "{height:"+winHeight+"px;}");
			}else{			
				var winHeight = document.getElementById('bottom').offsetTop;
				var layoutElement = document.getElementById('content');
				layoutElement.style.height = '415px';			
			}
		}
