String.prototype.trim=function(){return this.replace(/(^[\s]*)|([\s]*$)/g, "");};//去掉字符串前后空格
String.prototype.isEmail=function(){return /^[a-zA-Z0-9_.]+@([a-zA-Z0-9_]+.)+[a-zA-Z]{2,3}$/.test(this);};//判断是否是Email
String.prototype.is_plus_int=function(){
	return /^[1-9]\d*$/.test(this);
};
var userAgent = navigator.userAgent.toLowerCase();
var is_opera = userAgent.indexOf('opera') != -1 && opera.version();
var is_saf = userAgent.indexOf('applewebkit') != -1 || navigator.vendor == 'Apple Computer, Inc.';
var is_webtv = userAgent.indexOf('webtv') != -1;
var is_ie = (userAgent.indexOf('msie') != -1 && !is_opera && !is_saf && !is_webtv) && userAgent.substr(userAgent.indexOf('msie') + 5, 3);

String.prototype.isEmail=function(){return /^[a-zA-Z0-9_.]+@([a-zA-Z0-9_]+.)+[a-zA-Z]{2,3}$/.test(this);};//判断是否是Email
	$.fn.hideTime= function(t,b) {
			if(b==undefined) {var b=['hide',[100]]
			}
			return this.each( function() {
				var a=$(this);
				if(t=='stop') {
					clearTimeout(a.data('hidetimenum'))
				} else {
					a.data('hidetimenum',setTimeout(hide,t))
				}
				function hide() {
					a[b[0]].apply(a,b[1])
				}

			})
		};
var is_hide_menu;
$(function(){
	$('#top ul li').bind({
		mouseover:function(){
			$(this).find('div').show();
			$(this).addClass('move');
		},
		mouseout:function(){
			$(this).find('div').hide();
			$(this).removeClass('move');
		}
	});
	$("a").focus(function(){
		$(this).blur();
	})
	$(".bfd_Box dl:last").css({"background":'none'});
	$(".search_box .search_input").bind({
		blur:function(){
			if(this.value.trim()==''){
				$(this).val('Enter search keywords or item code here').css({color:'#ccc'});
			}
		},
		focus:function(){
			if(this.value.trim()=='Enter search keywords or item code here'){
				$(this).val('').css({color:'#333'});
			}
		}
	});
	$("#menu li:last").addClass("last_menu");
	/*显示菜单*/
	if($("#index").size()==1){//首页
		$(".menu li[class!='more_cat']").bind({
			mouseover:function(){
				$(".menu li").removeClass("hover");
				$(this).addClass("hover");
				var a=$(this).offset();
				$("#menu_list").css({'top':(a.top-15)+'px','left':(a.left+175)+'px'}).show();
				$("#menu_list div").hide();
				$("#menu_list_"+$(this).attr("child")).show();
				$("#menu_now").val($(this).attr("child"));
			},
			mouseout:function(){
				$("#menu_list").hide();
				$(".menu li").removeClass("hover");
			}
		});
		$("#menu_list").bind({
			mouseover:function(){
				$("#menu_top_"+$("#menu_now").val()).addClass("hover");
				$("#menu_list").show();
			},
			mouseout:function(){
				$("#menu_list").hide();
				$(".menu li").removeClass("hover");
			}
		});
		var menu=$("#menu h1").offset();
		$(".menu").css({"left":menu.left+'px'});
	}else{//非首页
		$("#menu h1").bind({
			mouseover:function(){
				var menu=$("#menu h1").offset();
				$(".menu").css({"left":menu.left+'px'});
				clearTimeout(is_hide_menu);
				$(".menu").show();
			},
			mouseout:function(){
				//$(".menu").hide();
				//is_hide_menu=1;
				is_hide_menu=setTimeout(hide_menu,10);
			}
		});
		$(".menu").bind({
			mouseover:function(){
				clearTimeout(is_hide_menu);
				$(".menu").show();
			},
			mouseout:function(){
				//$(".menu").hide();
				//is_hide_menu=1;
				is_hide_menu=setTimeout(hide_menu,10);
			}
		})
		$(".menu li[class!='more_cat']").bind({
			mouseover:function(){
				$(".menu li").removeClass("hover");
				$(this).addClass("hover");
				var a=$("#menu h1").offset();
				for(i=0;i<20;i++){
					if($(".menu li:eq("+i+")")[0]==this){
						b=i;
					}
				}
				$("#menu_list").css({'top':(a.top+b*41+32)+'px','left':(a.left+175)+'px'}).show();
				$("#menu_list div").hide();
				$("#menu_list_"+$(this).attr("child")).show();
				$("#menu_now").val($(this).attr("child"));
			},
			mouseout:function(){
				$("#menu_list").hide();
				$(".menu li").removeClass("hover");
			}
		});
		$("#menu_list").bind({
			mouseover:function(){
				$("#menu_top_"+$("#menu_now").val()).addClass("hover");
				clearTimeout(is_hide_menu);
				$(".menu").show();
				$("#menu_list").show();
			},
			mouseout:function(){
				$(".menu").hide();
				$("#menu_list").hide();
				$(".menu li").removeClass("hover");
			}
		});
	}
	$("#menu_list dd").each(function(){
		$(this).find("font:last").remove();
	});
	$("#live_chart .click_div").click(function(){
		$(this).hide();
		$("#live_chart .live_chart_form").show();
	})
	$("#live_chart span").click(function(){
		$("#live_chart .live_chart_form").hide();
		$("#live_chart .click_div").show();
	});
})
function con_us(){
	$(function() {
	    $(".help_list_ul .lisp .xpsss_top").click(function() {
	    	if($(this).parent(".lisp").children("ul").css('display')==="none"){
	    		$(this).parent(".lisp").children("ul").slideDown();
	    	}else{
	    		$(this).parent(".lisp").children("ul").slideUp();
	    	}
	    })
	});
}
function user_reply(){
	if($("#a").val()==1){
		$(".access").show();
	}else{
		$(".access").hide();
	}
	if($("input[name='picture']:checked").val()==1){
		$("#upload").show();
		$("#url").hide();
	}else{
		$("#upload").hide();
		$("#url").show();
	}
	$("#FullName").blur(function(){
		if($("#FullName").val().trim()!=""){
			$("#FullName").css("border","black 1px solid");
			$(".name_error").show();
			$(".one_name").html($(".one_name").attr('occupied')).hide();
		}else{
			$(".name_error").hide();
			$(".one_name").html($(".one_name").attr('occupied')).show();
		}
	});
	$("#Tel").blur(function(){
		if($("#Tel").val().trim()!=""){
			$("#Tel").css("border","black 1px solid");
			$(".tel_error").show();
			$(".one_tel").html($(".one_tel").attr('occupied')).hide();
		}else{
			$(".tel_error").hide();
			$(".one_tel").html($(".one_tel").attr('occupied')).show();
		}
	});
	$("#Email").blur(function(){
		if($("#Email").val().trim()!=""){
			$("#Email").css("border","black 1px solid");
			$(".email_error").show();
			$(".one_email").html($(".one_email").attr('occup')).hide();
		}else{
			$(".email_error").hide();
			$(".one_email").html($(".one_email").attr('occup')).show();
		}
	});
}
function addFile(){
	i=$("#upload input:last").attr('id');
	i++;
	$("#upload").append('<div><input type="file" name="img[]"><button style="padding-left:50px;" class="allbtn" type="button" onclick="$(this).parent().remove()""><span><span><font color="#FFFFFF">Remove</font></span></span></button></div>');
}
function hide_menu(){
	$(".menu").hide();
	$("#menu_list").hide();
	$(".menu li").removeClass("hover");
}
function logout(){//退出登录
	$.ajax({
		url:base_url+'/../Login/loginOut',
		success:function(data){
			if(data==1){
				$('#login_li').show();
				$('#logout_li').hide();
				$('#user_email').text('');
				if(base_url.indexOf("ember")!=-1||base_url.indexOf("Login")!=-1){
					window.location.href=base_url+'/../';
				}
				//$('#username_ajax').val('');
				//$('#password_ajax').val('');
			}
		}
	})
}
function check_order(){
	
	if($("#FullName").val().trim()==""){
	$("#FullName").css("border","red 1px solid");
	$(".name_error").hide();
	$(".one_name").html($(".one_name").attr('occupied')).show();
	$("#FullName").focus();
	 return false;	
	}else{
		$("#FullName").css("border","black 1px solid");
		$(".name_error").show();
		$(".one_name").html($(".one_name").attr('occupied')).hide();
	
	}
	if($("#Tel").val().trim()==""){
		$("#Tel").css("border","red 1px solid");
		$(".tel_error").hide();
		$(".one_tel").html($(".one_tel").attr('occupied')).show();
		$("#Tel").focus();
		 return false;	
	}else{
		$("#Tel").css("border","black 1px solid");
		$(".tel_error").show();
		$(".one_tel").html($(".one_tel").attr('occupied')).hide();
	}
	if($("#Email").val().trim()==""){
		$("#Email").css("border","red 1px solid");
		$(".email_error").hide();
		$(".one_email").html($(".one_email").attr('occupied')).show();
		$("#Email").focus();
		 return false;	
	}else{
		$("#Email").css("border","black 1px solid");
		$(".email_error").show();
		$(".one_email").html($(".one_email").attr('occupied')).hide();
	}
	return true;
}
function check_log(){
	
	if($("#username").val().trim()==""){
	$("#username").css("border","red 1px solid");
	$("#username_on").hide();
	$("#username_error").show();
	$("#username").focus();
	 return false;	
	}else{
		$("#username").css("border","black 1px solid");
		$("#username_error").hide();
		$("#username_on").show();
	
	}
	if($("#loginpassword").val().trim()==""){
		$("#loginpassword").css("border","red 1px solid");
		$("#loginpassword_error").hide();
		$("#loginpassword_errorerror").show();
		$("#loginpassword").focus();
		 return false;	
	}else{
		$("#loginpassword").css("border","black 1px solid");
		$("#loginpassword_error").show();
		$("#loginpassword_errorerror").hide();
		
	}
	return true;
		
	//alert("aa")
	//$("#login_form input").blur();
	
	//if($("#login_form .wrong").size()==0){
	//	return true;
	//}else{
		//alert("111")
	//	return false;
		//alert("22")
	//}
}
var flag=1;

function log_reg(){//登录，注册表单验证
	$(function(){
		$("#reg_form").submit(function(){//注册验证
			//alert(document.getElementById("agree").checked)
			if(!document.getElementById("agree").checked) {
				//alert("111111");
				$("#reg_agree_error").html($("#reg_agree_error").attr('error')).show();
				flag=0;
				document.getElementById("agree").focus();
				//$("#agree").val("0");
				return false;
				
			}else{
				$("#agree").val("1")
				flag=1;
			}
			
			if($("#email_val").val()==1 ||$("#email_val").val()==""){
				flag=0;
				$("#email_error").hide();
				$("#email").css("border","red 1px solid");
				$(".one").html($(".one").attr('occupied')).show();
				$("#email").focus();
				return false;
			}else{
				flag=1;
			}
			if(!$("#email").val().trim().isEmail()){
				flag=0;
				$("#email_error").html($("#email_error").attr('error')).show();
				$("#email").css("border","red 1px solid");
				$("#email").focus();
				return false;
			}else{
				flag=1;
			}
			//alert($("#password").val().trim());
			if($("#password").val().trim()==""){
				flag=0;
				$("#password_error").html($("#password_error").attr('error')).show();
				$("#password").css("border","red 1px solid");
				$("#password").focus();
				return false;
			}else{
				flag=1;
			}
			if($("#r_password").val().trim()!=$("#password").val().trim()){
				flag=0;
				$("#r_password_error").html($("#r_password_error").attr('error')).show();
				$("#r_password").css("border","red 1px solid");
				$("#r_password").focus();
				return false;
			}else{
				flag=1;
			}
	
			//alert($("#agree").val());
		
			
			if(flag==0){
				return false;
			}
		});
		$("#email").blur(function(){
			if(!$("#email").val().trim().isEmail()){
				flag=0;
				$("#email_error").hide();
				$(".one").html($(".one").attr('occup')).show();
				return false;
			}else{
					$.ajax({
						url:base_url+'/../Login/testEmail',
						data:'email='+$(this).val().trim(),
						success:function(re){
							flag_email=re;
							if(re==0){
								$("#email_error").show();
								$("#email_val").attr("value",0);
								$("#email").css("border","black 1px solid");
								$(".one").hide();
							}else{
								flag=0;
								$("#email_error").hide();
								$(".one").html($(".one").attr('occupied')).show();
								$("#email_val").attr("value",re);
								return false;
							}
						}
					})
			}
		});
		$("#password").blur(function(){
			if($("#reg_form input[name='password']").val().trim()!=""){
				$("#password").css("border","black 1px solid");
				$("#pads_error").show();
				$("#password_error").hide();
			}else{
				$("#password_error").html($("#password_error").attr('occupied')).show();
				$("#pads_error").hide();
				flag=0;
				return false;
			}
		});
		$("#r_password").blur(function(){
			if($("#r_password").val().trim()===$("#password").val().trim() && $("#r_password").val().trim()!=""){
				$("#r_password").css("border","black 1px solid");
				$("#pad_error").show();
				$("#r_password_error").hide();
			}else{
				$("#r_password_error").html($("#r_password_error").attr('occupied')).show();
				$("#pad_error").hide();
				flag=0;
				return false;

			}
		});
		
		$("#username").blur(function(){
			//alert($("#username").val().trim())
			if($("#username").val().trim()!=""){
				$("#username").css("border","black 1px solid");
				$("#username_on").show();
				$("#username_error").hide();
			}else{
				
				$("#username_on").hide();
				$("#username_error").show();
				

			}
		});
		$("#loginpassword").blur(function(){
			//alert($("#username").val().trim())
			if($("#loginpassword").val().trim()!=""){
				$("#loginpassword").css("border","black 1px solid");
				$("#loginpassword_error").show();
				$("#loginpassword_errorerror").hide();
			}else{
				
				$("#loginpassword_error").hide();
				$("#loginpassword_errorerror").show();
				

			}
		});
	})
}
function check_input(obj,msg){
	if($(obj).val().trim()==''){
		$(obj).next().addClass('wrong').removeClass('right').text(msg);
	}else{
		$(obj).next().addClass('right').removeClass('wrong').text('');
	}
}
function show_message(msg){
	$(".right").removeClass('right');
	$("#note_message").html(msg).css({'visibility':'visible'}).fadeTo(1,1).fadeTo(5000,0);
}
function forgot(){
	$("input").blur();
	if($('.wrong').size()==0){
		$("#forgot_form").ajaxSubmit({
			dataType:'json',
			success:function(data){
				if(data.code!=1){
					$("input[name='"+data.input+"']").next().addClass('wrong').removeClass('right').text(data.reason);
				}else{
					show_message('The E-mail be send Yor E-mailBox!');
				}
			}
		});
	}
}
function reset_psw(){
	$("input").blur();
	if($('.wrong').size()==0){
		$("#reset_psw_form").ajaxSubmit({
			dataType:'json',
			success:function(data){
				if(data.code!=1){
					$("input[name='"+data.input+"']").next().addClass('wrong').removeClass('right').text(data.reason);
				}else{
					show_message('The Password is be changed!');
				}
			}
		});
	}
}
function set_lan(lan){
	$.ajax({
		url:base_url+'/../Login/set_lang?lang='+lan,
		success:function(){
			window.location.reload();
		}
	})
}
function set_currency(currency_id){
	$.ajax({
		url:base_url+'/../Login/set_currency?currency_id='+currency_id,
		success:function(){
			window.location.reload();
		}
	})
}
function show_info(obj,num){
	$("#tab li").removeClass('hover');
	$("#tab_div .tab_child").hide();
	$(obj).addClass('hover');
	$("#tab_div .tab_child").eq(num).show();
}
function get_exp_price(country_id,m){//获取物流价格
	if(m!=0){
		$("body").append("<div id='body_cov'></div>");
		$("#body_cov").css({"height":$("body").height()+225,"opacity":0.05});
		var u='';
		if(m!="new_address"){
			u="?addr_id="+m;
		}
		$("body").append("<div id='open_form_div'><a href='javascript:close_new_addr()' class='cancel'>cancel</a><iframe frameborder='0' src='"+base_url+"/edit_addr"+u+"'></iframe></div>");
		$("#open_form_div").css({
			"left":($("body").width()-650)/2,
			"top":document.documentElement.scrollTop+50
		});
	}else{
		show_cov_div();
		$.ajax({
			url:base_url+'/get_exp_price?country_id='+country_id+'&ms='+m,
			dataType:'json',
			success:function(data){
				if(data.code==0){
					$(".shipping_list tbody tr").remove();
					$(".shipping_list tbody").append('<tr><td align="center" colspan="3">'+data.error+'</td></tr>')
					$("#shipp_price_tr").hide();
					
				}else{
					$(".shipping_list tbody tr").remove();
					$("#shipp_price_tr").show();
					for(i in data.exp){
						var c='';
						if(i==0){
							c=' checked="checked"';
							$("#shipp_price").html(data.exp[i].price);
						}
						$(".shipping_list tbody").append('<tr><td><input type="radio" value="'+
								data.exp[i].exp_id+'" onfocus="this.blur()" onchange="add_all_price()" id="'+
								data.exp[i].exp_id+'" price="'+data.exp[i].price+'" name="exp_id" '+c+'> <label for="'+
								data.exp[i].exp_id+'">'+data.exp[i].com_name+
								'</label></td><td>'+data.exp[i].day+' business days.</td><td><span class="chargeFee">'+
								data.exp[i].currency+'<strong>'+data.exp[i].price+'</strong></span></td></tr>');
					}
				}
				add_all_price()
				close_show_cov_div()
			}
		})
	}
}
function close_new_addr(){
	$("#open_form_div").remove();
	$("#body_cov").remove();
}
function close_new_addr2(){
	$("#open_form_div2").hide();
	$("#body_cov2").hide();
}
function change_exp_com(obj){
	var cur=$("#dis").attr("cur");
	var op=$(obj).find('option:selected');
	$('#exp_price').html(op.attr('price'))
	if(op.attr("oldprice")==op.attr("price")){
		$("#dis").hide();
	}else{
		$("#dis").html(cur+op.attr("oldprice")+'-'+cur+op.attr("dis")+'=').show();
	}
}
function show_coupon(obj){
	if(obj.checked){
		$("#coupon_chose_ul").show();
	}else{
		$("#coupon_chose_ul input").attr({"checked":false});
		$("#coupon_chose_ul").hide();
	}
	add_all_price()
}
function add_all_price(obj){
	var goods=$("#goods_price").html();
	if($("input[name='exp_id']:checked").size()>0){
		var shipping_price=$("input[name='exp_id']:checked").attr("price");
	}else{
		var shipping_price=0;
	}
	var insurance=dis=0;
	if(document.getElementById("getShipIns").checked){
		insurance=$("#getShipIns").attr("price");
		$("#insurance_font").html(insurance)
		$("#insurance_tr").show();
	}else{
		$("#insurance_font").html(0)
		$("#insurance_tr").hide()
	}
	if($("input[name='coupon']:checked").size()==1){
		dis=$("input[name='coupon']:checked").attr("price");
		$("#coupon_font").html(dis)
		$("#coupon_tr").show();
	}else{
		$("#coupon_font").html(0)
		$("#coupon_tr").hide()
	}
	$("#shipp_price").html(shipping_price);
 	$("#all_price").html(((goods-0)+(shipping_price-0)+(insurance-dis)).toFixed(2));
}

$.fn.autoTip = function(G){
	var D;
	D = {
		dvalue:"Search entire store here...",//表单默认值
		tip:"",             //默认提示信息样式名class
		tipnone:""      //在指定的input执行click时替换的样式名class
	};
	$.extend(D,G);
	if ($(this).val()==""){
		$(this).val(D.dvalue)
			   .addClass(D.tip)
		       .click(function(){
				if($(this).val()==D.dvalue){
						 $(this).val("");
						 $(this).removeClass(D.tip);
						 $(this).addClass(D.tipnone);
				}
				})
				.blur(function(){
				if($(this).val()==""){
				  $(this).removeClass(D.tipnone);
				  $(this).addClass(D.tip);
				  $(this).val(D.dvalue);
				}
				});
	};
}
$(document).ready(function(){
		var seachrvalue=$('#header_search').val();
	if(seachrvalue==''){
		$("#header_search").autoTip();
	}
});
function set_list_style(style){
	$.ajax({
		url:base_url+'/Login/set_list_style?style='+style,
		success:function(){
			window.location.reload();
		}
	});
}
var show_search='';
function catlist(){
	$(function(){
		$(".chose_box li div").each(function(){
			if($(this).height()>42){
				$(this).append("<p></p>");
			}
		});
		$(".chose_box li div p").click(function(){
			if($(this).parent().parent().height()<=42){
				$(this).parent().parent().css({"height":"auto"});
				$(this).addClass("hover");
			}else{
				$(this).parent().parent().css({"height":"42px"});
				$(this).removeClass("hover");
			}
			show_search='';
			$(".chose_box li div p.hover").each(function(){
				var a=$(this).parent().parent().find("span").html();
				show_search+=a.substr(0,a.length-1)+'_';
			})
			show_search=show_search.substr(0,show_search.length-1);
		})
		if(show_search!=''){
			var s=show_search.split("_");
			for(i in s){
				$(".chose_box li span").each(function(){
					if($(this).html()==s[i]+":"){
						$(this).parent().find("p").click();
					}
				})
			}
		}
	});
}
function search_list(url){
	if(show_search!=''){
		url+="&show_search="+show_search;
	}
	window.location.href=url;
}
function search_list2(url){
	url+="&now=1";
	search_list(url);
}
function fast_go_page(url,obj,ps){
	var obj=$(obj);
	var v=obj.prev().val()
	if(!v.is_plus_int()){
		show_message_little(obj,obj.attr("error"),'');
	}else{
		search_list(url+"&now="+(v>ps?ps:v));
	}
}
function show_cov_div(){
	$("body").append("<div id='body_cov'></div><div id='waiting'></div>");
	$("#body_cov").css({"height":$("body").height()+225,"opacity":0.05});
	$("#waiting").css({
		"left":($("body").width()-48)/2,
		"top":document.documentElement.scrollTop+200
	})
}
function close_show_cov_div(){
	$("#body_cov").remove();
	$("#waiting").remove();
}


$.widget('ui.goTop', {
	options: {
		pagewidth:972,
		speed:6,
		mleft:30,
		mbottom:50
	},
	_create: function() {
		var self=this;
		this.is_top_show=-1;
		self.hidegotop();
		self.refgotop();
		$(window).scroll( function() {
			self.hidegotop()
		});
		$(window).resize( function() {
			self.refgotop()
		});
		self.element.click( function() {
			
			self.movescrolltop()
		})
	},
	hidegotop: function() {
		if($(document).scrollTop()>0&&this.is_top_show!=1||$(document).scrollTop()<=0&&this.is_top_show!=0) {
			var op=this.options,$el=this.element;
			if($(document).scrollTop()>0) {
				this.is_top_show=1;
				$el.show()
			} else {
				this.is_top_show=0;
				$el.hide()
			}
		}
		if(is_ie=='6.0') {
			this.element.css({
				top:$(document).scrollTop()+$(window).height()-this.options.mbottom
			})
		}
	},
	refgotop: function() {
		var op=this.options,$el=this.element,rig=($(window).width()-op.pagewidth)/2-op.mleft-$el.width();
		$el.css({
			right:rig
		})
	},
	movescrolltop: function() {var op=this.options,movet=setInterval( function() {
			var v=$(window).scrollTop()+Math.floor((0-$(window).scrollTop())/op.speed);
			$(window).scrollTop(v);
			if($(window).scrollTop()<=0)
				clearInterval(movet)
		},10)
	}
});
var show_message_little_v;
function show_message_little(obj,msg,link){
	var o=obj.offset();
	/*alert(o.top)
	alert(msg);
	alert(link)*/
	if(link!=''){
		var content='<a href="'+link+'">'+msg+'</a>';
	}else{
		content=msg;
	}
	$("body").append('<div id="messge_little"><span></span><p>'+content+'</p></div>');
	show_message_little_v=setTimeout(close_message_little,4000);
	$("#messge_little").css({"top":o.top+obj.height()+10,"left":o.left-(150-obj.width())/2}).bind({
		mouseover:function(){
			clearTimeout(show_message_little_v);
		},
		mouseout:function(){
			show_message_little_v=setTimeout(close_message_little,100);
		}
	});
}
function close_message_little(){
	$("#messge_little").remove();
}
function send_email_qr(){
	var v=$("#email_input_qr").val();
	if(!v.isEmail()){
		$("#open_form_div .wrong").html('Wrong E-mail format,E-mail can not be empty');
	}else{
		$.ajax({
			url:home_url+'/Login/confirm_email?email='+v,
			success:function(){
				$("#open_form_div").html("<a href='javascript:close_new_addr()' class='cancel'>cancel</a><p>The confirmation email is sent to you, please confirm it as soon as possible.</p>");
			}
		})
	}
}
