﻿//屏错:
function killErrors() {
           return true;
           }
window.onerror = killErrors;
//推荐给好友:
function copyToClipBoard(){ 
    var clipBoardContent=""; 
    clipBoardContent+document.title; 
    clipBoardContent+=""; 
    clipBoardContent+=this.location.href; 
    window.clipboardData.setData("Text",clipBoardContent); 
    alert("复制链接成功，粘贴给朋友吧！"); 
} 
//名店系统
function md(f){
 		for(i=1;i<30;i++){
		if(f!=i){
			document.getElementById("sj"+i).style.display = "none";
			document.getElementById("md"+i).className = "dc_ppbg2";
		}else{
			document.getElementById("sj"+i).style.display = "block";
			document.getElementById("md"+i).className = "dc_ppbg1";
		};
		};
	}
//滑动标签
function bq(f){
 		for(i=1;i<10;i++){
		if(f!=i){
			document.getElementById("bq"+i).style.display = "none";
		}else{
			document.getElementById("bq"+i).style.display = "block";
		};
		};
	}