function myFocus(element) {
    if (element.value == element.defaultValue) {
        element.value = '';
    }
}
function myBlur(element) {
    if (element.value == '') {
        element.value = element.defaultValue;
    }
}

function typeofservice(mValue) {

    if (mValue.substring(0, 3) == 'Por') {
        window.location = "http://www.mobilitie.com/Portuguese/index.aspx";
    }
    else {
        if (mValue.substring(0, 3) == 'Eng') {
            window.location = "http://www.mobilitie.com/";
        }
        else {
            if (mValue.substring(0, 3) == 'Fra') {
                window.location = "http://www.mobilitie.com/French/index.aspx";
            }
            else {
                if (mValue.substring(0, 3) == 'Esp') {
                    window.location = "http://www.mobilitie.com/spanish/";
                }
                else
                    window.location = "http://www.mobilitie.com/Arabic/index.aspx";
            }
        }
    }
}
