/*
ตัวอย่างการใส่
<script type="text/javascript" src="/module/flashfix.js"></script>
*/
function flashfix(){
	fls = document.getElementsByTagName("object");
	for (var a = 0; a < fls.length; a++){fls[a].outerHTML = fls[a].outerHTML;}
}

//FF
//if (window.addEventListener)
//window.addEventListener("load", flashfix, false)

//IE
if (window.attachEvent) {
	window.attachEvent("onload", flashfix);
	//window.onload=flashfix();
}