<!--
function Swo() {
	this.name = null;
	this.SelfLinkURL = null;
	this.IS_SHOW_MESSAGE_ON_LOAD = true;
	this.NINJAVA_MESSAGE = null;
	this.FOCUS_HTMLFIELD_INPUTNAME = null;
	this.CHECK_DATA = null;
	this.showNinjavaMessage = function() {
		if (this.IS_SHOW_MESSAGE_ON_LOAD && isNotNullString(this.NINJAVA_MESSAGE)) {
			alert(this.NINJAVA_MESSAGE);
		}
	}
	// Sets focus on input-element.
	// @param inputName name of input element
	this.setFocus = function(inputName) {
		if (isNullString(inputName)) {
			inputName = this.FOCUS_HTMLFIELD_INPUTNAME;
		}
		setFocus(inputName, true);
	}
	return this;
}
//-->
