﻿<!--
function GetScreenRealSize(type){
	switch(type){
		case "width":
			return(screen.availWidth);
		break;
		case "height":
			return(screen.availHeight);
		break;
		default:
			return(-1);
		break;
	}
}
		function opWin(){
			var win = window.open("09sp/index.html", "window", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + GetScreenRealSize("width") + ",height=" + GetScreenRealSize("height") + ",left=0,top=0");
			win.focus();
		}
//-->
