﻿function qq_status(isSigKey) {
	var tempSrc = 'http://sighttp.qq.com/wpa.js?rantime=' + Math.random() + '&sigkey=' + isSigKey;
	var oldscript = document.getElementById('testJs');
	var newscript = document.createElement('script');
	newscript.setAttribute('type', 'text/javascript');
	newscript.setAttribute('id', 'testJs');
	newscript.setAttribute('src', tempSrc);
	if (oldscript == null) {
		document.body.appendChild(newscript);
	} else {
		oldscript.parentNode.replaceChild(newscript, oldscript);
	}
	return false;
}
function wangwang_status(isUId) {
	var Session = "http://amos.im.alisoft.com/msg.aw?v=2&uid=" + encodeURIComponent(isUId) + "&site=cntaobao&s=1&charset=utf-8";
	window.open(Session);
}