Hi Raman
You can use the optional variable FLASHVARS to do this.
If the swf is embedded in the HTML with EMBED tag then the syntax is as below
<EMBED src="Test.swf" quality=high bgcolor=#FFFFFF WIDTH="800" HEIGHT="600" NAME="myMovieName" ALIGN="" TYPE="application/x-shockwave-flash" play="true" loop="true" FLASHVARS="VarName1=VarValue1&VarName2=VarValue2" PLUGINSPAGE="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>
If you have used the Object Tag then the syntax is as below
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="400" id="myFlashMovie" align="middle"> <param name=FlashVars value="VarName1=VarValue1&VarName2=VarValue2"/></object>
This means that Parameters are separated by &.
Best regards
Partha