function ComingSoon()
{
	alert("Page Coming Soon.");
    void(0);
}

function PendingClient()
{
	alert("Pending Client.");
    void(0);
}

function passTo(conName, value, len)
{
    if (value.length >= len)
    {
        document.getElementById(conName).focus();
    }
}

function toggleDiv(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
          e.style.display = 'block';
}

function gotoLocation() {
	var selLocation = document.getElementById('locationSelect');
	if(selLocation.options[selLocation.selectedIndex].value != "") {
		switch(selLocation.options[selLocation.selectedIndex].value) {
			case "Airline":
				window.open("https://airline.bullseyestorage.com/webxpress");
				break;
			case "Kirby":
				window.open("https://kirby.bullseyestorage.com/webxpress");
				break;
			case "Weslayan":
				window.open("https://weslayan.bullseyestorage.com/webxpress");
				break;
			case "Westheimer":
				window.open("https://westheimer.bullseyestorage.com/webxpress");
				break;
			case "Gulfgate":
				window.open("https://gulfgate.bullseyestorage.com/webxpress");
				break;
			case "WestDallas":
				window.open("https://westdallas.bullseyestorage.com/webxpress");
				break;
		}
	}
}