function RunFlash(theId,theFlash,theWidth,theHeight)
{	
	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="'+
		theWidth+'" HEIGHT="'+theHeight+'" id="'+theId+'" ALIGN="middle">');
	document.write('<PARAM NAME=movie VALUE="'+theFlash+'">'); 
	document.write('<PARAM NAME=quality VALUE=high>'); 
	document.write('<PARAM NAME=bgcolor VALUE=#333333> ');
	document.write('<EMBED src="'+theFlash+'" quality=high bgcolor=#333333  WIDTH="'+theWidth+'" HEIGHT="'+theHeight+'" NAME="'+theId+
	'" ALIGN="middle" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>');
	document.write('</OBJECT>');	
}


