﻿function showflash(name,swf,width,height,bgcolor){ 
if(bgcolor==null||bgcolor==""){var transparent="opaque"}else{var transparent="transparent"}
var showtext="<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\""+width+"\" height=\""+height+"\" id=\""+name+"\" align=\"middle\">\n"; 
showtext=showtext+"<param name=\"allowScriptAccess\" value=\"sameDomain\" />\n"; 
showtext=showtext+"<param name=\"movie\" value=\""+swf+"\" />\n"; 
showtext=showtext+"<param name=\"menu\" value=\"false\" />\n"; 
showtext=showtext+"<param name=\"quality\" value=\"high\" />\n"; 
showtext=showtext+"<param name=\"scale\" value=\"exactfit\" />\n"; 
showtext=showtext+"<param name=\"wmode\" value=\""+transparent+"\" />\n"; 
showtext=showtext+"<param name=\"bgcolor\" value=\""+bgcolor+"\" />\n"; 
showtext=showtext+"<embed src=\""+swf+"\" menu=\"false\" quality=\"high\" scale=\"exactfit\" wmode=\""+transparent+"\" bgcolor=\""+bgcolor+"\" width=\""+width+"\" height=\""+height+"\" name=\""+name+"\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />\n"; 
showtext=showtext+"</object>\n"; 
document.write (showtext); 
}
