A bit like PC Anywhere, but not entirly.
You can't use a web browser, becuase browsers don't support the X protocol, and X doesn't support http.
The method I use to run remote X applications is as follows. Assume I am sitting at machine A and want to see programs on machine A but run them on Machine B.
[code]
ssh -X -C
dorward@machineb.host.name
Password: ***********
dorward@machineb:~$mozilla &
[code]
The -X to ssh enables X forwarding, it may be enabled by default on your system. The -C enables compression, this eats more CPU but speeds things up over a slow network.
Mozilla will then run on Machine B and display on Machine A. Remember that if you refer to any file within Mozilla it will look on Machine B and not Machine A.
A program more like PC Anywhere is VNC, this includes a Java Applet client so you can point your web browser at it. There are also Linux, Windows, Palm Pilot, and other client applications. Servers are available for Linux and Windows (among others).