cgNextParameter_depr_1_1 could not be loaded in the cg.dll

Dear Jogl expert,

I'm really beginner on jogl and i plan to use cg on jogl but i got problem here.

When I try to run a demos.cg.runtime_ogl_vertex_fraggment in jogl demo. And i got this error  "The procedure entry point cgNextParameter_depr_1_1 could not be loaded in the dynamic link library cg.dll."

And from this topic:
    http://192.18.37.44/forums/index.php?topic=10262.0

Ken Russel said "It looks like those functions were present in the 1.3 release of Cg and are absent in the current 1.4 release."

So I go to developer.nvidia.com and found troublesome thing in this page
    http://developer.nvidia.com/object/cg_toolkit.html
They said "All Cg 1.2 or Cg 1.3 programs should work with Cg 1.4 without the need to recompile the program.". And they even doesn't supply Cg 1.3 to download :(

Look like i hit the wall here. Thanks in advance for any suggestion.

BTW i got this error when i try this command
System.loadLibrary(“jogl_cg”);

Exception in thread “main” java.lang.UnsatisfiedLinkError: C:\Program Files\Java\jdk1.5.0\jre\bin\jogl_cg.dll: The specified procedure could not be found
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1668)
at java.lang.Runtime.loadLibrary0(Runtime.java:822)
at java.lang.System.loadLibrary(System.java:992)
at mygames.Main.main(Main.java:29)

   I dont know what i do wrong again :(

But it's ok if i do this.
    System.loadLibrary("jogl");

I really confused now ??? Please give me some help, Thanks in advance.

NVidia removed some deprecated functions from Cg in release 1.4 which broke JOGL’s Cg binding. As a temporary workaround I’ve placed the Cg 1.3 installers in the “Documents & Files” section of the JOGL web page. The “JSR-231” branch of the JOGL tree has been upgraded to the Cg 1.4 headers but I don’t have time currently to backport these changes to the main trunk. We are trying to get the first release of the JSR-231 APIs out the door and hope to have something ready within a few weeks.

Thank you so much, now my jogl can run propery :-*