function checkwin() {
	var displayWidth=screen.width;
	var displayHeight=screen.height;
	
//	alert("Width=" + displayWidth);
//	alert("Height=" + displayHeight);
	if(displayWidth < 1024 || displayHeight < 768) {
		location.href="./window_error.html";
	}
}
