function randomCommentRequest() {
	objGateway.request();
}



function randomCommentResponse(packet) {
	var comment = document.getElementById('comment');
	comment.innerHTML = packet;
	comment.focus();
}

