function run_movie(swf,w,h,link)
{
text = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"" + w + "\" height=\"" + h + "\">\r\n";
text+="<param name=\"movie\" value=\"" + swf + "\">\r\n";
text+="<param name=\"quality\" value=\"high\">\r\n";
text+="<param name=\"wmode\" value=\"opaque\">\r\n";
text+="<param name=\"FlashVars\" value=\"link1=" + link + "\">\r\n";
text+="<embed width=\"" + w + "\" height=\"" + h + "\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgiP1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" wmode=\"opaque\" quality=\"high\" src=\"" + swf + "\" menu=\"false\" flashvars=\"link1=" + link + "\">\r\n";
text+="</object>\r\n";
document.write(text);
return 1;
}
