function GetWebinvoerURL(applicatienaam)
{
	applicatienaam = applicatienaam.toUpperCase();
	var webInvoerUrl = "";
	if (applicatienaam == "THA")
		webInvoerUrl = "http://localhost/Atlantis.NET/AtlantisTHA";
	if (applicatienaam == "NT")
		webInvoerUrl = "http://localhost/Atlantis.NET/AtlantisNT";
	if (applicatienaam == "NTHOFMARKEN")
		webInvoerUrl = "http://localhost/Atlantis.NET/AtlantisNT";
		
	return webInvoerUrl;
}

