To use the new version of QwikMD in you current VMD, please add the following lines
to your .vmdrc (in the case of MacOS and Linux) or vmd.rc (Windows) file:

### START
after idle; # if not yet present

## change 1 to 0 to skip the loading of the new QwikMD
if {1} {
	set env(QWIKMDDIR) <Path to the new QwikMD version>
	source $env(QWIKMDDIR)/qwikmd.tcl
      	source $env(QWIKMDDIR)/qwikmd_func.tcl
      	source $env(QWIKMDDIR)/qwikmd_info.tcl
      	source $env(QWIKMDDIR)/qwikmd_logText.tcl
      	source $env(QWIKMDDIR)/qwikmd_ballon.tcl
	puts "Loading QwikMD from $env(QWIKMDDIR) version: [package require qwikmd]"
}

menu main on
### END
