var SITE_PATH='/',PRE_FIX='zzz999_';
function get_province(){var province=$("#Province").val();var id=$("#Province").find("option:selected").data('id');$.post(SITE_PATH+"form/?getregion",{'pid':id},function(result){$("#City").empty().append('');$("#District").empty();$.each(result,function(i,data){$("#City").append("");});},'json');}
function get_city(){var zip=$("#City").find("option:selected").data('zip');var tel=$("#City").find("option:selected").data('tel');var id=$("#City").find("option:selected").data('id');$("#zipcode").val(zip);$("#telcode").val(tel);$.post(SITE_PATH+"form/?getregion",{'pid':id},function(result){$("#District").empty().append('');$.each(result,function(i,data){$("#District").append("");});},'json');}
function set_face(face){$.post(SITE_PATH+"form/?editface",{'face':face,'type':'json'},function(result){layer.alert(result.return_msg,function(index){location.href=result.return_url})},'json');}
function set_code(){var zip=$("#District").find("option:selected").data('zip');var tel=$("#District").find("option:selected").data('tel');$("#zipcode").val(zip);$("#telcode").val(tel);}
function writeClear(o){if(o.val().length>0){o.parent().addClass('write');}else{o.parent().removeClass('write');};btnCheck(o.parents('form'));}
function btnCheck(form){var btn=true;form.find('input.inp').each(function(){if($(this).hasClass('no-follow')){return;};if($(this).val().length==0){btn=false;}});if(btn){form.find('.btn').removeAttr("disabled").parent().addClass('ok');}else{form.find('.btn').attr("disabled",true).parent().removeClass('ok');}}
function set_cookie(_name,val,expires){var d=new Date();d.setTime(d.getTime() + expires*1000);document.cookie=PRE_FIX+_name+"="+val+";path=/;expires="+d.toGMTString();}
function get_cookie(_name){var cookie=document.cookie;var arr=cookie.split("; ");for(var i=0;i