//function to call the function from flash using fscommand
function shell_DoFSCommand(command, args) 
{
	//alert("call me :"+command)
	switch(command)
	{		
		 case "fnDisplayConfirmBox":
			fnDisplayConfirmBox();
		 break;
		 case "fnshowError" :
			fnshowError(args)
		 break;
	}
}


function fnshowError(args)
{
	alert(args);	
}
