<!--
function ShowNewWindow(url)
{
    window.open(url);
    return false;
}

function ShowPopUp(url, name)
{
    window.open(url, "win" + name, "height=500, left=50, location=0, menubar=1, resizable=0, screenX=50, screenY=50, scrollbars=1, status=1, toolbar=1, top=50, width=700");
    return false;
}

function CityTextBox_Focus()
{
    if (event.srcElement.value == "Enter City")
    {
        event.srcElement.value = "";
        var zipCodeTextBox = document.getElementById(controlName + "ZipCodeTextBox");
        if (zipCodeTextBox.value == "Enter Zip Code")
        {
            zipCodeTextBox.value = "";
        }
    }
}

function EmailTextBox_Focus()
{
    if (event.srcElement.value == "Enter Email Address")
    {
        event.srcElement.value = "";
    }
}

function ZipCodeTextBox_Focus()
{
    if (event.srcElement.value == "Enter Zip Code")
    {
        event.srcElement.value = "";
    }
}

function MultiLineTextBox_KeyUp()
{
    var theValue = event.srcElement.value;
    if (theValue.length > 255)
    {
        event.srcElement.value = theValue.substr(0, 255);
    }
}
-->