// JavaScript Document
function QQ(uin)
{
	if(window.navigator.appVersion.indexOf("MSIE") == -1)
	{
		alert("本站温馨提示：\r\n　　您使用的浏览器不支持QQ临时会话功能，建议您加对方为好友，或使用IE浏览器访问。");
		return false;
	}
    Link="tencent://message/?uin="+uin;
	try{//支持
		var xmlhttp=new ActiveXObject("TimwpDll.TimwpCheck");
		this.location.href=Link;
		var  n = xmlhttp.GetVersion();
		if (n >= 2.1)
			this.location.href=Link;
		else
		{
			alert("本站温馨提示：\r\n　　请您访问http://im.qq.com/下载新版的QQ/TM以支持与卖家在线交流！");
			window.target="_top";
			window.open("http://im.qq.com/");
		}
	}catch(e){//不支持
		alert("本站温馨提示：\r\n　　请您访问http://im.qq.com/下载新版的QQ/TM以支持与卖家在线交流！");
		window.target="_top";
		window.open("http://im.qq.com/");
	}
	return false;	
}

function move(x, y) {
if (document.all) {
object1.style.pixelLeft += x;
object1.style.pixelTop  += y;}
else
if (document.layers) {
document.object1.left += x;
document.object1.top  += y;
}};

function position() {
document.object1.left += 200;
document.object1.top  += 0;
document.object1.visibility = "show"
};

function makeStatic() {
if (document.all) {object1.style.pixelTop=document.body.scrollTop+100}
else {eval('document.object1.top=eval(window.pageYOffset+20)');}
setTimeout("makeStatic()",0);}