// JavaScript Documentfunction typoFlash(typoSwfFile,divName,fontSize,fontColor,backgroundColor){	var flashdiv=document.getElementById(divName);	//alert( flashdiv.innerHTML );	var so = new SWFObject(typoSwfFile,divName, "0", "0", "7",backgroundColor);		so.addVariable("htmlText", document.getElementById(divName).innerHTML);		so.addVariable("divName", divName);		so.addParam("wmode", "transparent");		so.addVariable("fontSize", fontSize);		so.addVariable("fontColor", fontColor);		so.write(divName);}function resizeFlash(divName,h,w){	var flashdiv=document.getElementById(divName);	flashdiv.style.height = h+"px";		flashdiv.style.width = w+"px";}
