$(document).ready(function(){
    $("#Submit").click(function(){
        var ErrorMessage = "";
        if ( $("#Contact").val().length == 0 )
            ErrorMessage += "請輸入公司名稱或聯絡人\n";
        if ( $("#Telephone2").val().length == 0 && $("#Cellphone").val().length == 0 )
            ErrorMessage += "請輸室內聯絡電話或手機\n";
        if ( $("#Email").val().length == 0 )
            ErrorMessage += "請輸入E-mail\n";

        if ( ErrorMessage.length == 0 ) {
            var Telephone = $("#Telephone1").val() + "-" + $("#Telephone2").val() + " " + $("#Ext").val()
            var ContactTime = "";

            if ( $("#ContactTime1").attr("checked") == true )
                ContactTime = "上午時段";
            if ( $("#ContactTime2").attr("checked") == true )
                ContactTime = "下午時段";
            if ( $("#ContactTime3").attr("checked") == true )
                ContactTime = "晚上時段";
            if ( $("#ContactTime4").attr("checked") == true )
                ContactTime = "皆可";

            $.post("ajax.php", {Contact: $("#Contact").val(),
                                CompanyWebsite: $("#CompanyWebsite").val(),
                                Position: $("#Position").val(),
                                Telephone: Telephone,
                                Cellphone: $("#Cellphone").val(),
                                ContactTime: ContactTime,
                                Email: $("#Email").val(),
                                Address: $("#CompanyAddress").val()
            }, function(data){
                if ( data == 1 ) {
                    alert("感謝您填寫表單完成！\n\n我們將儘快派專人與您聯繫！");
                    location.href = "contact_ok.html";
                }
                else {
                    alert("寄送失敗！\n\n若有任何問題請寄信到 info@ss-design.net 我們將儘快派專人與您聯繫！");
                }
            });
        }
        else {
            alert(ErrorMessage);
        }
    });
});