<!--
body {
	overflow: auto;
}
* {
	margin:0;
	padding:0;
	height: 100%;
	width: 100%;

	/* for mozilla */
	min-width: 950px;
	min-height: 600px;

	/* for IE */
	width:  expression( Math.max(document.body.clientWidth,950) + "px" );
	height: expression( Math.max(document.body.clientHeight,600) + "px" );
}
-->