var serverUrl = this.makeServerUrl(stateId, cmd, message);
var state = this._state[stateId];
//Safari won't let us replace across domains.if(this._isWebKit){
state.serverWindow.location = serverUrl;
}else{
state.serverWindow.location.replace(serverUrl);
}