var objWin;
var nSizeWidth;
var nSizeHeight;
function GetAndSetWindowSize() {
	var strTemp;
	nSizeWidth = 0;
	nSizeHeight = 0;
	nSizeWidth = screen.width;
	nSizeHeight = screen.height;
	strTemp = "width="+nSizeWidth+",height="+nSizeHeight+",status=yes";
	objWin = window.open("special/index.html","1",strTemp);
	objWin.window.moveTo(0,0);
}
