var OmnisServer = 'omnis.arcict.com:5912';
var OmnisLibrary = 'webXMLwarranty';
var OmnisDomain = 0;

function getOmnisInfo(type) {
	// type: 0 = OmnisServer, 1 = OmnisLibrary, 2 = OmnisDomain
	switch (type) {
		case 0:
			return OmnisServer;
			break;
		case 1:
			return OmnisLibrary;
			break;
		case 2:
			return OmnisDomain;
			break;
		default:
			return null;
			break;
	}
}

function setOmnisInfo() {
	document.getElementById('OmnisServer').value = OmnisServer;
	document.getElementById('OmnisLibrary').value = OmnisLibrary;
	document.getElementById('OmnisDomain').value = OmnisDomain;
}
