function addBasket(name) {
	if(name == null){
		name = "hs_basket_product";
	}
	if (!Util.isChecked(name)) {
		alert("请至少选择一项");
		return;
	} else {
		document.inquiryForm.action="/inquiry_basket_add.htm";
		document.inquiryForm.submit();
	}
}

function inquiryNow2(name) {
	if(name == null){
		name = "hs_basket_product";
	}
	document.inquiryForm.action="/inquiry.html";
	document.inquiryForm.submit();
}
function addBasket2(name) {
	if(name == null){
		name = "hs_basket_product";
	}
	document.inquiryForm.action="/inquiry_basket_add.htm";
	document.inquiryForm.submit();
}

function inquiryNow3(){
	var form =document.inquiryForm2;
	form.fromSite.value=3;
	form.action="/inquiry.html";
	form.submit();
}
function textLimitCheck(thisArea, showArea, maxLength) {
	if (thisArea.value.length > maxLength) {
		alert(maxLength + " characters limit. \r Excessive data will be truncated.");
		thisArea.value = thisArea.value.substring(0, maxLength - 1);
		thisArea.focus();
	}
	showArea.value = thisArea.value.length;
}
function showDiv(id){
	$("#"+id).css({display:"block"}).mouseleave(function(){
		$("#"+id).css({display:"none"})
	});
}
function openMap(url){   
  window.open(url,'',"top=screen.availHeight/2,left=screen.availWidth/2,width=880,height=780,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no");
}
