﻿//消除圖片的虛線
if(document.all){
var tags=document.all.tags("a")
for (var i=0;i<tags.length;i++)
tags(i).outerHTML=tags(i).outerHTML.replace(">"," hidefocus=true>")}
//消除flash的虛線
if(typeof(flashfix) == 'undefined')
{
	function flashfix()
	{
		theObjects = document.getElementsByTagName("object");
		for (var i = 0; i < theObjects.length; i++)
		{
			theObjects[i].outerHTML = theObjects[i].outerHTML;
		}
	} 
}
flashfix();
//表格變色
function OMOver(OMO){OMO.style.backgroundColor='#800000';}
function OMOut(OMO){OMO.style.backgroundColor='';}
