jQuery(function($) {
	$("#applyForm").submit(checkApplyForm);
});
function checkApplyForm(){
    if($("#siteName").val()==''){
        inputMsg.showBox("siteName", 'error', '請填寫網站名稱', 'hide');
        $("#siteName").select();
        return false;
    }
     if($("#siteUrl").val()==''){
        inputMsg.showBox("siteUrl", 'error', '請填寫網站網址', 'hide');
        $("#siteUrl").select();
        return false;
    }
    if(!inputMsg.showResult()) return false;
	$.ajax({
		type:"POST",
		url:"/ajax/",
		data:{module:'exchangeLink',action:'doapply',siteName:$("#siteName").val(),siteUrl:$("#siteUrl").val(),logoUrl:$("#logoUrl").val()},
		success:function(data){
			inputResult(data, 'reload');
		}
	});
	return false;
}

