function openWin() {
	var sx = (screen.width) ? screen.width : 800;
	var sy = (screen.height) ? screen.height : 400;
	popupWin = window.open('index02.html', 'T2','width=' + sx + ',height=' + sy + ',left=0,top=0,scrollbars=auto,resizable=yes,status=yes');
}

