//Ê×Ò³JSÎÄ¼þ
window.onerror=function(){return true;}
function showProducts(){
    var obj = $('_thunderProduct');
    if(obj){obj.style.display = "block";}
}

function hiddenProducts(){
    var obj = $('_thunderProduct');
    if(obj){obj.style.display = "none";}
}

function setProductsPosition(obj){
    var panel = $('_thunderProduct');
    var pos = getPosition(obj);
    var left = pos.Left;
    var top = pos.Top;
    if(panel){
        panel.style.left = (left - 380) + "px";
        panel.style.top = (top + 12) + "px";
    }
}

function $(s){
	return document.getElementById(s);
}
function $C(tagName){
	return document.createElement(tagName);
}
function $P(child,parent){
	return parent?parent.appendChild(child):document.body.appendChild(child);
}
function $R(child,parent){
	return parent?parent.removeChild(child):document.body.removeChild(child);
}

function getPosition(o){
	var p={Top:0,Left:0};
	while(!!o){
		p.Top+=o.offsetTop;
		p.Left+=o.offsetLeft;
		o=o.offsetParent;
	}
	return p;
}

function toueme(){
document.getElementById("toubiao").style.display="none";
document.getElementById("toubiaoblock").style.display="block";
}

function touemeblock(){
document.getElementById("toubiao").style.display="block";
document.getElementById("toubiaoblock").style.display="none";
}
