﻿function OpenQQ(QQ){
window.open("tencent://message/?uin="+QQ+"&amp;Site=http://www.wenfei.com.cn/default.htm&amp;Menu=yes","_blank"); 
}

function OpenUrl(Url){
window.open(Url,"_self"); 
}

function OpenWin(Url){
window.open(Url,"_blank"); 
}

function copyToClipBoard(info){
var clipBoardContent='';
clipBoardContent=info+"\n";
clipBoardContent+=top.window.location.href;
window.clipboardData.setData("Text",clipBoardContent);
alert('复制成功，您可以粘贴到QQ/MSN上分享给你的好友了');
}


function Search(){
var txtKey=document.getElementById('searchkey');
CheckSerch(txtKey);
if (txtKey.value==''){
	alert('请输入检索信息！');
	return false;
}else{
	document.getElementById('sDo').value='Yes';
	document.getElementById('form1').submit();
	return true;
}
}

function SearchPress(){
if (window.event.keyCode==13){
	Search();
}
}

function CheckSerch(txtKey){
if (txtKey.value=='请输入检索信息'){txtKey.value=''};
}