Hi all . There is an applet based applicatiobn, which has session time out period of 12 min.I want to override this behaviora and want write a keep a live html,which automatically submit a time based request, so the session will be always alive. Could you guys show me how i can use ajax to send a keepalive signal to this applet.(note i don't have the source code for the applet)Is there a way to make a dummy reqeust to this variable of applet without need to refresh the whole html page that holds the applet ?

<param name='FlashVars' value='http://www.somesite.com/id=1234567894&theme=1' />

Looking forward for some replies.Thanks

applet html:

HTML Code:
<object classid='clsid:D27ABC-AE6D-11cf-97B8-412345540000' id='cameo' width='300' height='250' codebase='http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab' wmode="transparent">
		<param name='movie' value='http://www.somesite.com/meaw.swf' />
                <param name='quality' value='high' /> 
		<param name="wmode" value="transparent" />
		<param name='bgcolor' value='#000000' />
                <param name='FlashVars' value='id=1234567894&theme=1' />
		<param name='allowScriptAccess' value='always'/>
                <param name='allowNetworking' value='all'/> 
		<embed name='cameo' width='300' height='250' type='application/x-shockwave-flash' pluginspage='http://www.adobe.com/go/getflashplayer'  src='http://www.somesite.com/meaw.swf' quality='high' bgcolor='#000000' FlashVars='id=1234567894&theme=1' allowScriptAccess='always' allowNetworking='all' align='middle' play='true' loop='false' quality='high' wmode="transparent"> 
		</embed> 
	</object>