This module is simple in operation, and does nothing more than
create a shortcut (.lnk or .url) file.  The syntax is...

 MkLink(a as string,b as string,c as string,d as string)

 a = Folder to make shortcut in

	This is the folder that you want your shortcut file to
	be created in.  It can be any existing folder.

 b = Name for shortcut

	This is where you define the name for the shortcut, as
        it will exist in the folder.  Windows will assign an
	extension of .lnk or .url to it, as needed.

 c = Thing you are making a shortcut to

	This is the pathlist to the actual executable file or
	web URL that you are creating a shortcut for.

 d = Paramiters to that thing

	If there are any paramiters necessary for the executable
	file or URL the shortcut points to, this is where you
	will define them.  Otherwise, define it as a null string.


Example: Shortcut on your desktop to Notepad.exe

Call MkLink(Environ$("HOMEPATH")+"\DESKTOP", _
            "Notepad", _
            Environ$("WINDIR")+"\notepad.exe", _
            "")

