// JavaScript Document
function Run(ModuleStr, width, height)
{

//alert("function");
WidthStr = width;
HeightStr = height;
//alert(MaxWidth);
/*if (MaxWidth == '640') {
	WidthStr = '640';
	HeightStr = '400';
}*/


document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+WidthStr+'" HEIGHT="'+HeightStr+'" id="Mod_title" ALIGN="middle">');


document.write('<PARAM NAME=movie VALUE="'+ModuleStr+'.swf"> <PARAM NAME=quality VALUE=high> <param name="wmode" value="transparent"><param name="LOOP" value="false"><param name="SCALE" value="exactfit"> <EMBED src="'+ModuleStr+'.swf"  WIDTH=" '+WidthStr+'" HEIGHT="'+HeightStr+'" loop="false" ALIGN="middle" quality=high bgcolor=#FFFFFF TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" scale="exactfit"></EMBED>');
document.write('</OBJECT>');
}
