/*Smart Page (S) Scripted by FairyFar*/

function ResumeError() {
//忽略JS错误
return true;
}
window.onerror=ResumeError;

function Trim() {
//过滤字符串两端空格
return this.replace(/\s+$|^\s+/g,"");
}
String.prototype.Trim=Trim;

function check_form_search(){
//检测搜索表单
	var kd_len=document.smartpage_searchform.keyword.value.Trim().length;
	if (kd_len<2 || kd_len>50){
		alert("关键词长度应当在2～50个字符之间！");
		return false;
	}
}

function copyToClipBoard(wherefrom,msg) {
//将信息复制到剪贴板
	if (msg==""){
		alert("复制内容为空！");
		return;
	}
	var clipBoardContent;
	clipBoardContent=msg;
	window.clipboardData.setData("Text",clipBoardContent);
	alert(wherefrom + "已复制到剪贴板！");
}