if (RemoteSupport == null) var RemoteSupport = {};
RemoteSupport._path = _dwr_path
// example: receive data from server
RemoteSupport.isLogged = function(callback)
{
  dwr.engine._execute(RemoteSupport._path, 'RemoteSupport', 'isLogged', callback)
}
// example: send data to server and receive data back
RemoteSupport.echo = function(p0, callback)
{
  dwr.engine._execute(RemoteSupport._path, 'RemoteSupport', 'echo', p0, callback)
}

RemoteSupport.writeCalendarDay = function(p0, p1, callback)
{
  dwr.engine._execute(RemoteSupport._path, 'RemoteSupport', 'writeCalendarDay', p0, p1, callback)
}
