﻿function EmialLoginAlert()
{
    var loginName = document.getElementById( "EmailLoginName" );
    if( loginName.value.trim().length <= 0 )
    {
        aleret( "The E-mail must fill! " );
    }
}

function ContactLoginAlert()
{
    var ContactloginName = document.getElementById( "ContactLoginName" );
    if( ContactloginName.value.trim().length <= 0 )
    {
        aleret( "The ContactId must fill! " );
    }
}