private static Runtime runtime= Runtime.getRuntime();
public static void broadcast(VncViewersList clients, ProgressModel prog) throws IOException {
Iterator<VncViewerInfo> it= clients.iterator();
while (it.hasNext()) {
VncViewerInfo client= it.next();
String host= client.getHost();
if (prog != null)
prog.setMessage(host);
broadcast(host);