// JavaScript Document
<!--
			var displaywidth = screen.width;
			var displayheight = screen.height;
			function opensubwin01(file,w,h,winname){
				var winwidth = displaywidth/10*8;
				var winheight = displayheight/10*8;
				var winleft = displaywidth/100;
				var wintop = displayheight/100;
				var optionstring	= "toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,";
				if( displaywidth< w &&displayheight< h )
				optionstring += "width=" +winwidth + ", height=" + winheight + ",left=" + winleft + ",top=" + wintop ;
				else if( displaywidth>w && displayheight< h )
				optionstring += "width=" +w + ", height=" + winheight +",left=" + winleft + ",top=" + wintop ;
				else if( displaywidth<w && displayheight>h )
				optionstring += "width=" +winwidth + ", height=" + h +",left=" + winleft + ",top=" + wintop ;
				else
				optionstring += "width=" +w + ", height=" + h + ",left=" + winleft + ",top=" + wintop ;
				var win1 = window.open(file, winname, optionstring);
				}

//-->

<!--
function changesize(){
window.moveTo(0,0);
}
//-->

