function ComingSoon()
{
	alert("Coming Soon.");
    void(0);
}

function PendingClient()
{
	alert("Pending Client.");
    void(0);
}

function passTo(conName, value, len)
{
    if (value.length >= len)
    {
        document.getElementById(conName).focus();
    }
}