Nice work, gizmo

Now that you have synclient working, there are a lot more things you can do with it if you want to experiment.
To disable touchpad entirely: add the line:
Option "TouchpadOff" "1"
To the Touchpad section in xorg.conf.
Here is a quick script that you can use to toggle your pad:
#!/bin/sh
#
# toggle touchpad on or off
tpstatus=$(synclient -l | grep TouchpadOff | awk '{print $3}')
if [ $tpstatus = 0 ];then $(synclient TouchpadOff=1);else $(synclient TouchpadOff=0);fi
Copy the code to a file of your choosing and make it executable.
A script like this will be included in VL7, and yes, it should work on your machine.