﻿<!--
	function reSize()
	{
		var td, fw, fh;
		if(screen.width>=1280)
		{
			td = 120;
			fh = 400;
		}
		else if(screen.width>=1024)
		{
			td = 25;
			fh = 400;
		}
		else if(screen.width>=800)
		{
			alert("螢幕解析度不足\n\n最低解析度: 1024 * 768\n最佳解析度: 1280 * 1024");
			td = 10;
			fh = 280;
		}
		else
		{
			alert("螢幕解析度嚴重不足\n\n最低解析度: 1024 * 768\n最佳解析度: 1280 * 1024");
			td = 10;
			fh = 160;
		}
		td1.style.height = td;
		fw = fh * 9 / 4;
		if (navigator.appName=="Microsoft Internet Explorer" )
		{
			//flashobject
			document.form1.flashobject.style.height = fh;
			document.form1.flashobject.style.width = fw;
		}
		else
		{
			//flashembed
			document.form1.flashembed.style.height = fh;
			document.form1.flashembed.style.width = fw;
		}
	}
//-->

