人生若只如初见
〈script language="javascript"〉
〈!--
function getFaceImg(QQcode)
{
var Re=new RegExp("^[1-9]{1}\\d $","g");
if (!QQcode||!Re.test(QQcode)) return;
var URL="http://search.tencent.com/cgi-bin/friend/oicq_find?oicq_no=" QQcode;
var http=new ActiveXObject("Microsoft.XMLHTTP");
http.open("GET",URL,false,"","");
http.setRequestHeader("CONTENT-TYPE","text/html; Charset=gb2312");
http.send();
if (http.status!=200) return;
var webStr=http.responseText;
Re=new RegExp("\"(http://img.tencent.com/face/[^\"] )\"","i......